int[] tzionim = new int[50];
for (int s = 0; s < 10; s++){
Console.WriteLine("Enter first number: ");
int first = int.Parse(Console.ReadLine());
Console.WriteLine("Enter second number: ");
int second = int.Parse(Console.ReadLine());
Console.WriteLine("Enter third number: ");
int third = int.Parse(Console.ReadLine());
for (int s = 0; s < 50; s++){
if(tzionim[s] > firstPlace){
thirdPlace = secondPlace;
secondPlace = firstPlace;
}else if(tzionim[s] > secondPlace){
thirdPlace = secondPlace;
secondPlace = tzionim[s];
}else if(tzionim[s] > thirdPlace){
Console.WriteLine("first place is: "+firstPlace);
Console.WriteLine("second place is: "+secondPlace);
Console.WriteLine("third place is: "+thirdPlace);