I am getting this ERROR "undefined symbol x,y,z" and "statement missing" in the following program
#include<iostream.h>
#include<conio.h>
int main()
{
clrscr()
int x,y,z,max;
cout<<"enter the three number";
cin>>x>>y>>z;
max=x;
if(y>max)
max=y;
if(z>max)
max=z;
cout<<"\n"<<"the largest of"<<x<<","<<y<<"and"<<z<<"is"<<max;
return 0;
}