I'm making a candy box game, but i cant get the input to work. The other problem is it prints 'You have 1 sweet.' and then stops. Please help?
import time, sys
print("Sweetie box")
sweets = 0
while True:
time.sleep(1)
sweets += 1
print("You have ", sweets, " sweets.")
INPUT = input()
if INPUT == ("a"):
print("It worked!")
input().