#include int main(void){ int A, B, C; scanf("%d %d %d", &A, &B, &C); if (A+B-C == 0) printf("Correct"); else printf("Incorrect"); return 0; }