I'll be the next @ Dcoder

Words
52
Reading
1 min
Listen
Play
3y

Problem: You are given a string, you have to convert each letter in the string with the next one.For example a becomes b and C becomes D.
Input: Input contains a string s.
Output: Print the manipulated string according to the problem.
Constraints: 1≤length of string≤100
Sample Input: Dcoder
Sample Output:
Edpefs

print(''.join(tuple(map(lambda c: chr(ord(c)+1), tuple(input())))))
I'll be the next @ Dcoder | Ecency