Dorothydu's picture
Add files using upload-large-folder tool
11c6595 verified
cond = "y"
total = 0
while cond == "y":
num = int(input("Enter number: "))
total += num
cond = input("Do you want to add another number? (y/n): ")
print("The total is: ",total)
input("Press enter to continue")