#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number;
cin >> number;
cout << number / 10000 << " " <<number / 1000 % 10 << endl;
system("pause");
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number;
cin >> number;
cout << number / 10000 << " " <<number / 1000 % 10 << endl;
system("pause");
return 0;
}