Hi

I was wondering if anyone could help me with my program I'm using the newest version of Dev-C++ here is what I typed:

Code:
#include <iostream>
int main()
{
    int x = 5;
    int y = 7;
    std::cout << endl;
    std::cout << x + y << " " << x * y;
    std::cout << end;
    return 0;
}
and here is the error message I get:

'endl' undeclared (first use this function)
'end' undeclared (first use this function)

if anyone can tell me what to do that would help alot. Thanks in advance