Input
Output
public class If { public static void main(String []args) { int a=10; if(a!=0) { System.out.println("Print the value of a "+a); } } }