Code:
#include <iostream>
int main();  // Remove this semicolon
{
    int x = 5;
    int y = 7;
    std::cout << "\n";
    std::cout << x + y << " " << x * y;
    std::cout << "\n";
    return 0;
}