#include<iostream> #include<cstdlib> #include<ctime> using namespace std; int main(){ int a; srand(time(0)); a=rand()%5; cout<<a; }