#include<iostream> #include<cstdlib> #include<ctime> using namespace std; int main(){ srand((unsigned)time(NULL)); int n; n=rand()%100; cout<<n; return 0; }