Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[5 / 2 / ?]

small request

No.1121287 View ViewReplyOriginalReport
Could someone fix this program to have break?

[code:lit]
total = 0
while(True):
num = int(input("Give me a positive number "))
if num >= 0:
total += num
else:
print("Your total is " + str(total))
[/code:lit]