mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02: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}!");
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |