#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int a,b,c; cin >> a >> b >> c; if(a+b==c) { cout << "Correct" << '\n'; } else { cout << "Incorrect" << '\n'; } return 0; }