+ 1
Why test case 3 and 5 failed? What's the problem with this code? Its the coach question, skee ball.
import math point = int(input("")) ticket = math.ceil(point/12) if ticket>10: print("Buy it!") else: print("Try again")
2 Respuestas
import math point = int(input("")) ticket = math.ceil(point/12) if ticket>10: print("Buy it!") else: print("Try again")