#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); cout << 100 << endl; for(int i=0; i<100; i++) cout << i+1 << " " << (i+1)%100+1 << "\n"; }