+ 1
Paint cost problem: iam failing only test number 3 test 1 2 4 5 are ok can anyone tell me whats wrong in my code
brush=40 color=int(input()) paint=color*5 total=brush+paint tax=10/100*total value=total+tax print(round(value))
3 Respuestas
+ 2
import math
...code...
print(math.ceil(value))
+ 3
thanks it worked
+ 1
ok thanks i will try