My issue
get fresh question
My code
x = int(input())
# Solution as follows
if x < 70:
print("Order Confirmed")
else:
print("Order Limit reached")
print("Thank YOU!")
x = int(input())
# Solution as follows for 2nd input
if x < 70:
print("Order Confirmed")
else:
print("Order Limit reached")
print("Thank YOU!")
x = int(input())
# Update your code below this line for 2nd user input
if x < 70:
print("Order Confirmed")
else:
print("Order Limit reached")
print("Thank YOU!")
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone