#include int main(void) { char str[100]; fgets(str, sizeof(str), stdin); int a, b, c; sscanf(str, "%d %d %d", &a, &b, &c); if (a + b == c) { printf("Correct"); } else { printf("Incorrect"); } return 0; }