Conditional Example 2
class Main {
public static void main(String[] args) {
int x = 10;
int y = 99;
if(x > y){
System.out.println("x is greater than y!");
} else {
System.out.println("x is not greater than y!");
}
}
}INFO