using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string str = Console.ReadLine();
for (int i = str.Length-1; i >= 0; i--)
{
Console.Write(str[i]);
}
Console.ReadLine();
}
}
}
LZ 看看这样行不行