View Code of Problem 88

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

Double click to view unformatted code.


Back to problem 88