# number <= 10 and number >= 1 could be written as 1 <= number <= 10number = 1if number <= 10 and number >= 1: print 'Great!'else: print 'Wrong!'