Python coded first time
Asking the user for their name
name = input("What is your name? ")
print(f"Hello, {name}!")
Asking for a number and converting it to an integer
age = int(input("How old are you? "))
print(f"You will be {age + 1} next year!")