# def powitanie(imie):
#     print(f"witaj {imie}")
#     pass
# powitanie("franek")

# def powitanie(imie, powturzenia):
#     for i in range (powturzenia):
#         print(f"hej {imie}")
#     pass

# powitanie("Tomek", 0)
# nick = "tomas"
# powitanie(nick,5)

# def prostokont(a,b):
#     wynik = a *b
#     print(f"pole twojego prostokata wynosi {wynik} cm!")
#     pass
# a = int(input("podaj bok a(w cm)"))
# b = int(input("podaj bok b(w cm)"))
# prostokont(a,b)

# def prostokont(a,b,c):
#     list = []
#     list.append(a)
#     list.append(b)
#     list.append(c)
#     maxx = max(list)
#     isitreal = False
#     if a + b > c:
#         isitreal = True
#     elif a + c > b:
#         isitreal = True
#     elif c + b > b:
#         isitreal = True
#     else:
#         isitreal = False
#     wynik = 0
#     if maxx == a:
#         wynik = (b *c)/2
#     elif maxx == b:
#         wynik = (a*c)/2
#     elif maxx == c:
#         wynik = (a*b)/ 2


#     if isitreal == True:
#         print(f"pole twojego prostokata wynosi {wynik} cm!")
#     else:
#         print("trujkat nie istnieje")
#     pass
# a = int(input("podaj bok a(w cm)"))
# b = int(input("podaj bok b(w cm)"))
# c = int(input("podaj bok c(w cm)"))
# prostokont(a,b)
# import math

# def kolo(promien):
#     wynik = float(math.pi * (promien^2))
#     print(f"pole twojego kola wynosi {wynik} cm")
# r = 10
# kolo(r)

# import time

# def pasek_ladowania(gotowe, wszystko=100):
#     wykonane = round(10*gotowe/wszystko)
#     niewykonane = 10 - wykonane

#     tekst_wykonane = '#' * wykonane
#     tekst_niewykonane = '-' * niewykonane
#     print(f'\r[{tekst_wykonane}{tekst_niewykonane}]', end=' ')
#     pass

# for i in range(100):
#     pasek_ladowania(i, 50)
#     time.sleep(0.1)
#     pass

# from math import sqrt

# def psf(a):
#     return 3 * sqrt(3) *a **2/2
# pole = psf(2)
# print(pole)
# def powitanie(imie):
#     return f"witaj {imie}!"
# print(powitanie(input("podaj imie")))

# dzielna = int(input("podaj dzielna"))
# dzielnik = int(input("podaj dzielnik"))

# def podzielic(d1,d2):
#     if d2 == 0:
#         return "nie dziel przez 0!"
#     elif d1 % d2 == 0:
#         return "podzielne bez reszty"
#     else:
#         return f"niepodzielne bez reszty. reszta {d1%d2}"
# print(podzielic(dzielna, dzielnik))

name = str(input("twoje imie"))
height = float(input("twuj wzrost (w metrach)"))
age = int(input("twuj wiek"))

def obliczanie(imie,wiek,wzrost):
    return f"{imie}, lat {wiek}, {wzrost:.2f}m wzrostu"
print(obliczanie(name, age, height))
