0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 03:31:59 +00:00

3570. 求个位

https://xjoi.net/detail/1162329
This commit is contained in:
Baoshuo Ren 2021-11-11 10:26:08 +08:00 committed by Baoshuo Ren
parent 37838b6bb2
commit ee06639209
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

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