十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
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();
}
}
}