#include <stdio.h>

float calcola_max(float a, float b)
{
    if (a > b)
        return a;
    else
        return b;
}

void main()
{
    float i,j;
    i = 10;
    j = 20;
    printf("Il massimo tra %f e %f e' %f\n", i, j, calcola_max(i,j));
}

