#include<stdio.h>

void main()

{

    int x,y,z;

    printf("\nEnter Three Integers : ");

    scanf("%d%d%d",&x,&y,&z);

    if(x>y && x>z)

    {

        printf("\n%d is greatest number",x);

    }

    else if(y>z)

    {

        printf("\n%d is greatest number”,y);

    }

    else

    {

        printf("\n%d is greatest number",z);

    }

}