Write a statement that would print your last name, followed by a comma, followed by your first name.

LANGUAGE: C++

CHALLENGE:

Suppose your name was Alan Turing. Write a statement that would print your last name, followed by a comma, followed by your first name. Do not print anything else (that includes blanks).

SOLUTION:

cout << “Turing,Alan”;