using System;public class RevStrDemo{ public static void Main() { string str = "God is love"; Console.WriteLine(str); for (int i = 1; i<=str.Length; i++) { Console.Write(str.Substring(str.Length - i, 1)); } Console.WriteLine("\n"); }}