#include using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int a,b,c; cin >> a >> b >> c; if(a+b==c){ printf("Correct\n"); } else{ printf("Incorrect\n"); } }