2 solutions
- 1
Information
- ID
- 515
- Time
- 1000ms
- Memory
- 64MiB
- Difficulty
- 2
- Tags
- # Submissions
- 142
- Accepted
- 92
- Uploaded By
#include <bits/stdc++.h> using namespace std;
int main() { char c1, c2, c3, c4, c5; cin >> c1 >> c2 >> c3 >> c4 >> c5; c1 += 4; c2 += 4; c3 += 4; c4 += 4; c5 += 4; cout << c1 << c2 << c3 << c4 << c5 ; return 0; }