Run ID:148246
提交时间:2026-02-10 13:52:09
#include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int id, score; for (int i = 0; i < 50; ++i) { cin >> id >> score; if (score >= 80) { cout << id <<' '<< score << '\n'; } } return 0; }