#include<bits/stdc++.h>
//#include<atcoder/all>

using namespace std;
//using namespace atcoder;

int main(){
    int A,B,C;
    cin>>A>>B>>C;
    if(A+B==C) cout<<"Correct"<<endl;
    else  cout<<"Incorrect"<<endl;
}