Problem 1: Simple Greeting Program
Easypython
Problem Description
Write a Python program that asks the user for their name and then prints a personalized greeting message.
Input
A single line of text: the user's name.
Output
A greeting message that includes the user's name.
Constraints
- Name will contain only alphabetic characters and spaces.
Example Input
textAarav
Example Output
textHello, Aarav! Welcome to Python programming.
Concepts Covered
input(), print(), string concatenation.