num = 5 if num > 10: print("num is totally bigger than 10.") elif num < 10: print("num is smaller than 10.") else: print("num is indeed 10.")