#include<iostream.h>
#include<conio.h>
#include<stdio.h>
vide principal()
{
clrscr();
int a,c,b;
cout<<"entrez trois nombres" ;
cin>>a;
cin>>b;
cin>>c;
si(a>b && a>c)
{
cout<<a<<"est le plus grand de tous"<<endl;
}
sinon si(b>a && b>c)
{
cout<<b<<"est le plus grand de tous"<<endl;
}
sinon si(c>a && c>b)
{
cout<c<<"est le plus grand de tous"<<endl;
}
getch();
}