Files
lanqiao/others/test5.cpp
2025-04-09 10:07:23 +08:00

11 lines
229 B
C++

// 比赛万能模版
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
signed main(){
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
cout << "hello lanqiao" << endl;
return 0;
}