11  getting started

print("hello world")

11.1 Getting input from user

name = input("please enter your name")
print("Hello" + name)

11.2 getting other types

str_birth_year = input("please enter your birth year")
birth_year = int(str_birth_year)