#include <stdio.h> int main() { float a, b, c; scanf("%f%f%f", &a, &b, &c); if((a+b)>c) printf("能构成三角形\n"); else printf("不能构成三角形\n"); return 0; }