#include using namespace std; #define rep(i,n) for(int i = 0; i < (n); i++) typedef long long ll; typedef long double ld; typedef pair P; int main() { int a, b, c; cin >> a >> b >> c; cout << (a + b == c ? "Correct" : "INcorrect") << endl; return 0; }