write a program demonstrating cout statement

/*write a program to display the following output using a
single cout statement.
Maths = 90
physics = 77
chemistry = 69 */

#include
#include
void main()
{
clrscr();
cout<<"OUTPUT PROGRAM\n\n\n";
cout<<"\tMaths = 90\n"<<"\tPhysics = 77\n"<<"\tChemistry = 69\n";
getch();
}