#include<iostream>
#include<time.h>
#include<stdlib.h>
using namespace std;
int main(){
srand((unsigned int)time(NULL));
int a=rand()%100+1;
cout<<"a="<<a;
return 0;
}
#include<iostream>
#include<time.h>
#include<stdlib.h>
using namespace std;
int main(){
srand((unsigned int)time(NULL));
int a=rand()%100+1;
cout<<"a="<<a;
return 0;
}