using System;
public class Program
{
public static void reverse(int x)
int z;
z=x%10*100 + x/10%10*10 +x/100;
Console.WriteLine(z);
}
public static void Main()
int g;
Console.WriteLine("enter ten numbers with three digits");
for(int i=0;i<10;i++)
g = int.Parse(Console.ReadLine());
if(g>99 && g<1000)
reverse(g);
else
Console.WriteLine("YOU ARE A DUMB HUMAN BEING");