#include using namespace std; int main() { uint a, b, c; cin >> a >> b >> c; cout << (c == (a + b) ? "Correct" : "Incorrect") << std::endl; }