B1011
The snippet can be accessed without any authentication.
Authored by
Kiryuu Sakuya
main.c 354 B
#include <stdio.h>
int main(void) {
int lines;
scanf("%d", &lines);
for (int i = 1; i <= lines; i++) {
long long a, b, c;
scanf("%lld%lld%lld", &a, &b, &c);
if (a + b > c) {
printf("Case #%d: true\n", i);
}
else {
printf("Case #%d: false\n", i);
}
}
return 0;
}
Please register or sign in to comment