View Code of Problem 88

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

Double click to view unformatted code.


Back to problem 88