Ответ:
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
if (n > 10)
n = (n / 10) % 10;
}
cout << n;
Объяснение: