using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace net
{
internal class Program
{
static void Main(string[] args)
{
String[] Dizi = new string[10];
for (int i = 0; i < 10; i++)
{
Console.WriteLine("{0}. İsim Soyisimi Girin: ", i+1);
Dizi[i]=Console.ReadLine();
}
for (int i = 0; i < 10; i++)
{
Console.WriteLine("{0}. İsim Soyisim: ", i + 1);
Console.WriteLine(Dizi[i]);
}
Console.ReadKey();
}
}
}