package day1.examples;
public class ExampleIf {
public static void main(String[] args) {
System.out.println("Hello Lokanadham
Thandlam");
int x = 20;
int y = 40;
if (x == y) {
System.out.println(" X is equal to
Y");
} else if (x > y) {
System.out.println("X is Greater to
Y");
}
else if (x < y) {
System.out.println("X is Less than
Y");
}
}
}