using System;
public class Program
{
public static void Main()
Console.Write("Начално трицифрено число:");
string s = Console.ReadLine();
int oN = int.Parse(s);
int a, b, c;
a = oN % 10;
b = (oN / 10) % 10;
c = oN / 100;
int nN;
nN = c * 100 + b * 10 +a;
Console.WriteLine("Числото след извършената операция");
}