mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
16 lines
228 B
C#
16 lines
228 B
C#
namespace Solution
|
|
{
|
|
class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
string line;
|
|
while ((line = System.Console.ReadLine()) != null)
|
|
{
|
|
|
|
System.Console.WriteLine($"Hello, {line}!");
|
|
}
|
|
}
|
|
}
|
|
}
|