0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-09 02:38:49 +00:00
OI-codes/XJOI/problem/3571/3571.cpp

11 lines
136 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int a;
cin >> a;
cout << a % 100 / 10 << endl;
return 0;
}