mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 08:10:27 +08:00
17 lines
259 B
C++
17 lines
259 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
cin >>a;
|
|
for(int i=1;i<=a;i++){
|
|
for(int j=i+1;j<=a;j++){
|
|
cout <<i<<" "<<j<<endl;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|