#include <bits/stdc++.h>
using namespace std;
int main(){
cout << 0 << 1;
for(auto i = 0; i < 98; ++i) cout << 0; cout << endl;
for(auto i = 0; i < 99; ++i){
cout << 1;
for(auto j = 0; j < 99; ++j) cout << 0;
cout << endl;
}
}
1 2 3 4 5 6 7 8 9 10 11 12 | #include <bits/stdc++.h> using namespace std; int main(){ cout << 0 << 1; for(auto i = 0; i < 98; ++i) cout << 0; cout << endl; for(auto i = 0; i < 99; ++i){ cout << 1; for(auto j = 0; j < 99; ++j) cout << 0; cout << endl; } } |
English