4
Size: a a a
4
АК
4
АК
4
Y
Y
Y
Y
Y
Y
P
GT
Y
B
GT
Y
static void Main(string[] args)
{
Console.WriteLine($"{Input().Item1} {Input().Item2}");
Console.ReadLine();
}
static Tuple<string, int> Input()
{
Console.Write("Name: ");
string name = Console.ReadLine();
Console.Write("Age: ");
int age = int.Parse(Console.ReadLine());
return new Tuple<string, int>(name, age);
}