What will the following code print? `if b > a: print("b is greater than a") elif a == b: print("a and b are equal") else: print("a is greater than b")` when a = 200 and b = 33?
What will the following code print? `if x > 10: print("Above ten,") if x > 20: print("and also above 20!") else: print("but not above 20.")` when x = 41?