View Code of Problem 88

#include<stdio.h>
main()
{
	int a,b,c,d,e,f,n;
	scanf("%d %d %d %d %d %d",&a,&b,&c,&d,&e,&f);
	n=f+e+d+(3+c)/4;
	printf("%d",n);
}

Double click to view unformatted code.


Back to problem 88