#include using namespace std; int main(void){ int a,b,c; cin >>a>>b>>c; string ans = "Incorrect"; if(a+b == c) { ans = "Correct"; } cout << ans<