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

Anonymous
c_cpp
11/21/2023 5:15 AM
196 B
23
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