//Sample05_61.java class Sample05_61 { public static void main(String[] args){ boolean bool; bool = 1==1; System.out.println(bool); bool = 1!=1; System.out.println(bool); } }