Description
This problem is easy. You just need to output an integer N (0<=N<50). If your RP is very high, you will get an AC.wink
Input
This problem needn’t input anything.smiley
Output
An integer.
Sample Input
(No input)
#include<bits/stdc++.h>
using namespace std;
int main()
{
srand(time(NULL));
cout<<rand()%50<<endl;
return 0;
}