Syntax 4.3 : if Statement
if (condition) statement1 else statement2
if (x >= 0) y = sqrt(x); else cout << "Bad input\n";