#include <iostream>
using namespace std;
int main() {
int i = 10;
while(i--) {
cout<<i<<" ";
}
cout<<"\n";
i = 10;
while(--i) {
cout<<i<<" ";
}
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgp1c2luZyBuYW1lc3BhY2Ugc3RkOwoKaW50IG1haW4oKSB7CglpbnQgaSA9IDEwOwoJd2hpbGUoaS0tKSB7CgkgICAgY291dDw8aTw8IiAiOwoJfQoJY291dDw8IlxuIjsKCSBpID0gMTA7Cgl3aGlsZSgtLWkpIHsKCSAgICBjb3V0PDxpPDwiICI7Cgl9CglyZXR1cm4gMDsKfQ==