Problem F
unknown
c_cpp
2 years ago
146 B
11
Indexable
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
cout << n % 10;
return 0;
}
Editor is loading...
Leave a Comment
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
cout << n % 10;
return 0;
}