# Simple Python Program name = input("Enter your name: ") age = int(input("Enter your age: ")) print("Hello", name) print("Your age is", age)