package com.mywork; public class If { public static void main(String[] args) {//will check the condition if true na true or will terminate int a=50; if (a<=20) { System.out.println("true"); } else { System.out.println("false"); } } }