x = True y = False print(x, 'is of type ', type(x)) print(y, 'is of type ', type(y)) print("----------------") a = 40 b = 200 if b > a: print("b is greater than a") #no identation will give an error if b > a: print(b, "is greater than", a) #this is ok #multiple statements in if block # Get two integers from the user x = int(input('Please enter the number to divide: ')) y = int(input('Please enter dividend: ')) # If possible, divide them and report the result if y != 0: quotient = x/y print(x, '/', y, "=", quotient) #same block else: print('Division by 0 is not allowed'); print('Simple Math'); #same block print('Done')