よじろめ覚書

私の理解度重視のソースコードです。

ABC151A - Next Alphabet

問題:A - Next Alphabet

#include <iostream>
using namespace std;

int main(void) {
    char c;

    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> c;
    cout << (char)(c + 1) << "\n";
    return 0;
}