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