def powitanie(imie):
    print(f"Witaj {imie}")

name = input("Podaj imie: ")

powitanie(name)