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