| 比赛 | CSP2023-S模拟赛 | 评测结果 | WWWWWWWWWWWWWWWWWWWW | 
|---|---|---|---|
| 题目名称 | 删除题目 | 最终得分 | 0 | 
| 用户昵称 | 心灵震荡 | 运行时间 | 0.000 s | 
| 代码语言 | C++ | 内存使用 | 0.00 MiB | 
| 提交时间 | 2023-10-17 20:03:52 | ||
#include <bits/stdc++.h>
using namespace std;
int n;
int main()
{
	srand(time(0));
	freopen("delete.in", "r", stdin);
	freopen("delete.out", "w", stdout);
	ios :: sync_with_stdio(false);
	cin.tie(0), cout.tie(0);
	cin >> n;
	cout << rand() % (int) (1e8) + 1;
	return 0;
}