Can you spot the mistake in this main.cpp file?

We have to use the std namespace or put std:: in front of coutWe need to return 0 in main()The << signs need to point in the other directionnumber can't take whole numbers

Fantastic! We have to use the std namespace if we don't put std:: before cout. We don't have to return 0 and the number variable can take whole numbers.

Whoops! We have to use the std namespace if we don't put std:: before cout. We don't have to return 0 and the number variable can take whole numbers.