#include <bits/stdc++.h> using namespace std; int main() { int n; while(true) { cin >> n; if(n == 42) { break; } cout << n << endl; } return 0; }
对着题解改了好久还是不对。。自闭了
是“未知错误”