#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
abs(n);
cout << n % 100 / 10;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
abs(n);
cout << n % 100 / 10;
return 0;
}