Files
workspace/c/luogu/p1108.cpp
e2hang ebcee63b7c New
2026-01-09 00:05:37 +08:00

13 lines
160 B
C++

#include <iostream>
#include <vector>
using namespace std;
int main(){
int n;
cin >> n;
for(int i = 0; i < n; ++i){
}
return 0;
}