#include #include #include using namespace std; int main() { int dice; srand(time(NULL)); dice = (rand() % 6) + 1; cout << "We rolled a " << dice << endl; return 0; }