#include <stdio.h>

int main()
{
	int a;
	int b;
	int c;

	printf("\n Please enter three integers : ");
	scanf_s("%d %d %d", &a, &b, &c);

	if (a > b)
	{
	    if (a > c)
	        {
		    printf("\n %d is the biggest.", a);
	 	}
	 	else
	 	{
	            printf("\n %d is the biggest.", c);
	 	}
	}
	else
	{
	     if (b > c)
                 {
		     printf("\n %d is the biggest.", b);
		 }
		 else
	  	 {
		
	             printf("\n %d is the biggest.", c);
		 }
	}

	getchar();
	getchar();

	return 0;
}