#include #include #include using namespace std; int main() { srand(time(NULL)); int a; int b=1; do { a=((rand()%50)+1); cout<< a << " , "; b++; }while(b<11); return 0; }