I was learning programming from a book, in it there was a program which I have typed out and am recieving an error

[Error] 'end' was not declared in this scope

This is the program please tell me what is wrong

#include<iostream>
int main()
{
int x = 5;
int y = 7;
std::cout << endl;
std::cout << x + y <<""<< x * y;
std::cout <<end;
return 0;

}


error1.jpg