let a,b,c = stdin.ReadLine().Split() |> Array.map int |> fun i -> i.[0], i.[1], i.[2] printfn "%s" (if a + b = c then "Correct" else "Incorrect")