a=5 b=6 if a>b: print 'a is a bigger number' elif a<b: print 'b is a bigger number' else print 'a equals b'