Untitled
unknown
c_cpp
2 years ago
140 B
6
Indexable
#include <iostream>
using namespace std;
int main() {
int x;
cin >> x;
cout << (x % 100) / 10 << endl;
return 0;
}
Editor is loading...
#include <iostream>
using namespace std;
int main() {
int x;
cin >> x;
cout << (x % 100) / 10 << endl;
return 0;
}