提交时间:2025-10-10 20:07:06

运行 ID: 69113

#include<bits/stdc++.h> using namespace std; int main(){ int p,q,r; cin>>p>>q>>r; if(p+q>r&&p+r>q&&q+r>p){ cout<<"yes"; }else{ cout<<"no"; } }