#include using namespace std; using ll = long long; constexpr char newl = '\n'; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int a, b, c; cin >> a >> b >> c; cout << (a + b == c ? "Correct" : "Incorrect") << newl; return 0; }