using System;
namespace ConsoleApp1{
static void Main(string[] args){ string x = "";
while (x != null){
x = Console.ReadLine(); Console.WriteLine("hello, " + x);
} } }
這是C#