using System;
public class HelloWorld
{
public static void Main(string[] args)
{
string data ="Miraj";
string di="";
for(int i= data.Length - 1; i >= 0; i--){
di+=data[i];
}
Console.WriteLine(di);
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)