from tkinter import*
import time
lol = Tk()
lol.title("Клирек")
lol.geometry("640x480")
lol['bg'] = 'green'
sus = 0
def gg():
global sus
sus += 1
lbl['text'] = str(sus)
if sus == 50:
lbl['text'] = 'Агафья'
while sus < 50:
bg = 'blue'
lbl = Label(lol, text = sus)
lbl.pack()
bub = Button(lol, text = 'click', command=gg)
bub.pack()
lol.mainloop()