0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-21 17:25:24 +00:00
OI-codes/LibreOJ/10194/data/gen.cpp

18 lines
270 B
C++
Raw Normal View History

2022-05-28 12:25:28 +00:00
#include<cstdio>
#include<ctime>
#include<cstdlib>
using namespace std;
int N=1e9;
int Rand()
{
int x=rand();
return (x*rand()+rand())%N+1;
}
int main()
{
freopen("data10.in","w",stdout);
srand(time(0));
printf("%d %d %d",Rand(),Rand(),Rand());
}