0
What's wrong?
https://www.sololearn.com/coach/22?ref=app Paint costs What's wrong? x = float(input()) y = x*5+40+(x*5+40)/10 if int(y) == float(y): print (int(y)) else: print(float(y))
3 Respostas
+ 2
input is an integer
x = int(input())
remove the if statement and use math.ceil
print(math.ceil(y))
(you need to import math)
0
What is celi mean?