#include #include using namespace std; int main() { srand(time(0)); int i = rand() % 10; cout << i << endl; return 0; }