0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-05 13:38:47 +00:00
OI-codes/XJOI/problem/3570/3570.cpp

11 lines
130 B
C++

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