Copy the app link with current input parameters. They will be displayed in the URL.
If a user visits the app, it will run automatically, using the input parameters from the URL.
sum = 0whileTrue:
number = input("Enter a number to add:")
ifint(number.isdigit()):
sum += int(number)
print(sum)
else:
print("That's not a number!")
breakprint("The sum is", sum)