Skip to content
C

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

text
Aarav

Example Output

text
Hello, Aarav! Welcome to Python programming.

Concepts Covered

input(), print(), string concatenation.

Input (stdin)

Output

Run your code to see output here...