0
Why doesn’t this work when i use decimals for x ?(Double for 31 days calculator)
x = int(input()) z = int(x * (2**31)) y = 1000 if z > y: print("take the offer") else: print("take the 1000")
0 Resposta
x = int(input()) z = int(x * (2**31)) y = 1000 if z > y: print("take the offer") else: print("take the 1000")