#include using namespace std; random_device rnd; mt19937 mt(rnd()); int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); cout << "! C" << endl; //ケースいくつ? for(int check=5; check<=100; check++){ int two = 0,eight = 0; for(int test=0; test<100000; test++){ int t = 0,e = 0; for(int i=0; i= e) two++; else eight++; } cout << check << " "; cout << two << " " << eight << endl; } }