#include using namespace std; #define _GLIBCXX_DEBUG #define dump(c) cerr << "> " << #c << " = " << (c) << endl #define all(c) ((c).begin()), ((c).end()) #define rep(i,n) for(int i=0;i v){rep(i,v.size()){if(i num = {0}; array ans = {0}; int x = 1; int y = 0; int unUsed; while (true){ int a, b, c, d; while (!(a!=b!=c!=d)){ a = rand()%10; b = rand()%10; c = rand()%10; d = rand()%10; } cout << a << " " << b << " " << c << " " << d << endl; cin >> x >> y; if (x==4 && y == 0) break; } return 0; }