#include <stdio.h> int main(){ -int i; -for(i='0';i<='9';i++) --printf("%c\\t%d\\n",i,i); -return 0; }
Problem statement
Given a lowercase alphabet character. You have to print the next character in the alphabet.
Input
Only one line containing a lowercase English letter C
Output
Print the next letter to C in the alphabet.