learning pyton for beginerrs
name=input("hello please enter your name : ") age =int(input("hello please enter your age : "))
def get_year(age): return 2022 -age
champ=("hello "+name) new_you=(" you were born in the year " +str(get_year(age))) print(champ + new_you)