# 靠运气的比赛

## A. 运气

输出1-50

开赌吧孩子

```c++
#include <bits/stdc++.h>
using namespace std;
int main(){
srand(time(0) ^ (unsigned long long)new char);
int n=(int)(rand()<<32)|rand()%(10)+1;
cout<<n%50+1;
return 0;
}
```



---

## B. 气运

输出1-10

开赌吧孩子

```c++
#include <bits/stdc++.h>
using namespace std;
int main(){
srand(time(0) ^ (unsigned long long)new char);
int n=(int)(rand()<<32)|rand()%(10)+1;
cout<<n%10+1;
return 0;
}
```



---

## C. CA

# ~~CA~~


输出1/0

开赌吧孩子

```c++
#include <bits/stdc++.h>
using namespace std;
int main(){
srand(time(0) ^ (unsigned long long)new char);
int n=(int)(rand()<<32)|rand()%1;
cout<<n%2;
return 0;
}
```



---
