1 2 3 4 5 6 7 8 9
def f(x: int) -> int: if x > 10: if x > 30: print("string") return x + 1 else: return x - 1 else: return x