public class IfThen2 {
   public static void main(String[]	args){
   
   // Write an if, else statement
   // if the integer ix is 0, print "yes" if ix is any other value, print "no".
   
      int ix = 1;
      if (ix == 0){
         System.out.println("yes");
      }
      else {
         System.out.println("no");
      }
   
   //
   // more complicated: if ix is 1 print "no" otherwise do nothing
   //
   }
}