Привіт [ім'я]
Користувач вводить ім'я, вивести на екран "Hello, [ім'я]"
Input:
Юля
Expected output:
Hello, Юля
Input:
Оксана
Expected output:
Hello, Оксана
Input:
Андрій
Expected output:
Hello, Андрій
name = input() print("Hello, "+name)