def incremented_thrice(x):
    x = x + 1
    x += 1
    print(x + 1)

x = 5
b = incremented_thrice(x) # incremented_thrice(5)
c = incremented_thrice(b)

print(f'x={x}, b={b}, c={c}')
