Run ID:145673
提交时间:2026-01-25 17:58:14
#include <stdio.h> int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); // 使用三目运算符判断并输出 printf("%s\n", (a + b > c) ? "Yes" : "No"); return 0; }