# # imie= input("podaj imie: ")
# # wiek=int(input("podaj swój wiek: "))
# # wiek = wiek**3
# # imie = imie

# # print(f"twoje imie to {imie}, a twój wiek to {wiek}")

# a=14
# b=21

# w=-a
# print(w)



# pi=3.14
# r=10
# w= pi*r**2
# o=2*pi*r
# V=4/3*pi*r**3

# print(f"pole: {w}")
# print(f"obw: {o}")
# print(f"V: {V}")

import math
# x=math.sqrt(100)

a=3
b=4

c= math.sqrt(a**2 + b**2)
print(c)