using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project5
{
public class Program
public static void Main(string[] args)
string str;
Console.WriteLine("Enter a String");
str = Console.ReadLine();
foreach(char c in str)
int s = (int)c + 1;
char b = (char)s;
Console.Write(" "+b);
}