/* * fifth.c */ #include int main() { int first, second, max ; printf("Enter two integers :") ; scanf("%d%d", &first, &second) ; if(first > second) max = first ; else max = second ; printf("\nMax(%d,%d) = %d\n", first, second, max) ; return 0 ; } // Larger fifth.c