#coding: UTF-8 print "Start" x = 0 y = 1 if x == 0: print "x is 0" if y == 0: print "y is 0" if y != 0: print "y is not 0" print "End"