1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-13 23:22:49 +02:00

18 lines
279 B
C#

using System;
namespace Solution
{
class Program
{
static void Main()
{
string line;
while ((line = Console.ReadLine()) != null)
{
Console.WriteLine($"Hello, {line}!");
}
}
}
}