#include<bits/stdc++.h> using namespace std; mt19937 rg(random_device{}()); int n,m; int main(){ n=rg()%1000000,m=rg()%1000000; cout<<n<<" "<<m; return 0; }