Relational operators

All relational operational return boolean values: true or false. You can assign these values to variables for example:
int x = 3;
int y = 4;
bool z = (x == y);

Type interactions

In general: expressions always return the most expressive type.

Exercises

User Input and Output

Console Output