Run ID:145941
提交时间:2026-01-25 19:51:23
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,n; cin>>n; for(int i=0;i<n;i++){ cin>>a>>b; if(a>=10||b>=20){ cout<<"True"<<endl; }else{ cout<<"False"<<endl; } } return 0; }