mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
18 lines
279 B
C#
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}!");
|
|
}
|
|
}
|
|
}
|
|
}
|