using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace retrun
{
class Program
{
static void Main(string[] args)
{
string act = Console.ReadLine();
string rev = "";
for (int index = act.Length-1;index >= 0;index--)
{
rev += act[index];
}
Console.WriteLine("{0}",rev);
Console.ReadKey();
}
}
}
Copyright © 2009-2022 www.fjjierui.cn 青羊区广皓图文设计工作室(个体工商户)达州站 版权所有 蜀ICP备19037934号