You are on page 1of 1

#include<iostream>

#include <time.h>
using namespace std;

int main()
{
int m;
srand(time(NULL));
cout << rand()%6;
system("pause");
}

You might also like