#include using namespace std; template bool cmin(T &a, U b) { return a > b && (a = b, true); } template bool cmax(T &a, U b) { return a < b && (a = b, true); } signed main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); int A, B, C; cin >> A >> B >> C; cout << ((A + B == C) ? "Correct" : "Incorrect") << "\n"; }