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