# # import time




# # # # while True:
# # # #     print("STOP SCROLLING")
# # # #     time.sleep(0.1)

# # # while True:
# # #     odp = input("Napisz cos")
# # #     print("echo1" + odp)
# # #     if odp == "exit":
# # #         break
# # #     elif odp == "cicho":
# # #         continue
# # #     print("")

# # # i = 0
# # # while i<10:
# # #     print("witaj")
# # #     i+=1

# # iloscP = int(input("podaj liczbe powtorzen"))
# # i=0
# # while i<iloscP:
# #     print("Giganci Programowania")
# #     i+=1

# import random

# minimum = 0
# maksimum = 100

# liczba = random.randint(minimum,maksimum)

# odp = None 
# licznik = 0

# while odp != liczba:
# #     odp = int(input("podaj liczbe: "))

# #     licznik += 1

# #     if odp< liczba:
# #         print("za malo")
# #     else:
# #         print("za duzo")

# # print("Gratulacje")
# # print("Tura: " + str(licznik))

# suma = 0


# while suma<101:
    
#     a = int(input("podaj liczbe"))

#     suma += a

# print("limit osiagniety")


while True:
      a = int(input('podaj liczbe'))
      if a<0:
            continue
      elif a==0:
        break
      else:
        print(a*a)
      





















