import random

liczba = random.randint(0,100)

hatsune = -1

runda = 1
while runda < 1000:
    liczba = random.randint(0,100)

    hatsune = -1

    while int(hatsune) != liczba:
        hatsune = input("Zgadnij liczbę: ")
        if int(hatsune) > liczba:
            print("Liczba jest mniejsza")
        if int(hatsune) < liczba:
            print("Liczba jest większa")

        

    print(f"Wygrałeś (I co masz z tego)(Wygraj jeszcze {1000 - runda} razy)")
    runda += 1
print("Typie ty chyba nie masz życia")