using System;
class Console03
{
public static int Main()
{
Console.Write(“あなたの名前は “);
string YourName = Console.ReadLine();
Console.Write(“あなたの年齢は “);
string YourAge = Console.ReadLine();
Console.WriteLine(“あなたの名前は{0}で年齢は{1}歳です”,
YourName, YourAge);
return 0;
}
}