imie = "Nikodem"    #zmienna str czyli łańcuch znaków
print(imie, type(imie))

wzrost = input("Podaj swój wzrost: ")
print("Twoj wzrost to: ", wzrost, type(wzrost))
wzrost = float(wzrost)
print("Twoj wzrost to: ", wzrost, type(wzrost))
wzrost = int(wzrost)
print("Twoj wzrost w zaokrągleniu w dół to: ", wzrost, type(wzrost))
