here my code:
#include<stdio.h>
#include<math.h>
#define max(a,b) (a>b)? a : b
int main()
{
long long t;
while(scanf("%lld",&t)!=EOF)
{
int has=t;
t=(t/2)+(t/3)+(t/4);
printf("%lld\n",max(t,has));
}
}
i dont know what wrong with it… please help