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