using System;
public class Program
{
public static void Main()
Console.WriteLine("Въведи цяло число");
string bb = Console.ReadLine();
int whole = int.Parse(bb);
int one, two, three;
one = whole % 10;
two = (whole / 10) % 10;
three = whole / 100;
int final;
final = three * 100 + two * 10 + one;
Console.WriteLine("Сборът е " + final);
}