COROANA TE ROG!!!
#include <iostream>
#include <fstream>
using namespace std;
int main() {
int s1, s2, i=10000;
cin >> s1 >> s2;
ofstream g("BAC.TXT");
while (i < 100000) {
if ((i / 10000 + (i / 1000) % 10 == s1) && (i % 10 + (i / 10) % 10 == s2))
g << i << " ";
i++;
}
return 0;
}