0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 18:40:07 +00:00

11 lines
130 B
C++

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