#include using namespace std; using namespace chrono; #if __has_include() #include using namespace atcoder; #endif int main() { int64_t a, b, c; cin >> a >> b >> c; if (a + b == c) { cout << "Correct" << endl; } else { cout << "Incorrect" << endl; } return 0; }