public class PrintBoolean { public static void main(String args[]) { boolean x; x=true; System.out.print(x); } }