#include using namespace std; typedef long long ll; int main() { int A, B, C; cin >> A >> B >> C; if (A + B == C) { cout << "Correct\n"; } else { cout << "Incorrecta\n"; } return 0; }