OneCompiler

Python coded first time

1657

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!")