View Code of Problem 88

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

Double click to view unformatted code.


Back to problem 88