package InfinityJune21.DoubtSessionJun26; public class IfExample { public static void main(String[] args) { int num = -10; if(num > 0) { System.out.println("Greater than zero"); } } }