// playing with various Java syntax. public class SyntaxPlay { public static void main( String[] args ) { int i=3; if (3==i) System.out.println(" Yes, i is three. "); else System.out.println(" No, i is not three. "); } }