Enter two numbers and print the highest number.

code looks like this:

#include<stdio.h>
main()
{
int x,y;
clrscr();
printf(“Enter two numbers: \n”);
scanf(“%d-%d”,&x,&y);

if(x>y)
printf(“%d-%d”,x,y);
else
printf(“%d-%d”,y,x);
getch();
}