Initial commit

This commit is contained in:
2025-03-14 22:39:32 +08:00
commit 7b1e0f329e
38 changed files with 1153 additions and 0 deletions

9
test100.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
n++;
cout << n << endl;
return 0;
}