#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define ll long long
#define rep(i,n) for (int i = 0; i < (n); i++)
#define coutf(f) cout << fixed << setprecision(f)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()

int main() {
	int a, b, c;
	cin >> a >> b >> c;
	if (a + b == c) cout << "Correct" << endl;
	else cout << "Incorrect" << endl;
	return 0;
}