提交时间:2025-11-24 19:56:11
运行 ID: 74283
#include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if (a + b > c && a + c > b && b + c > a) { cout << "yes" << endl; } else { cout << "no" << endl; } return 0; }