Change cout to Cout and run the program. The compiler says Cout was not declared. C++ is case-sensitive. cout and Cout are different names. Try changing return to retrun.
The compiler does not recognize retrun as a keyword. Fix the typo and the error disappears. Keywords must match exactly. You cannot write INT main instead of int main. If you see not declared errors, check spelling first.