#include int calcolo(int n1, int n2 ) { if (n1 >= n2) return n1; else return n2; } long int getstr2int(void){ char buffer[1024]; fgets(buffer,sizeof(buffer),stdin); return (strtol(buffer, (char **)NULL, 10)); } main (void) { int a,b,c; a=getstr2int(); b=getstr2int(); c=calcolo(a,b); printf("%d e il numero maggiore \n",c);}