I - Порядок буквы

 avatar
unknown
c_cpp
2 years ago
145 B
12
Indexable
#include <bits/stdc++.h>

using namespace std;

int main() {
    char x;
    cin >> x;
    int k = x - 'a';
    cout << k + 1;
    return 0;
}


Editor is loading...
Leave a Comment