#include<stdio.h> main() { int i,j;float s = 0; for(i=6;i>4;i--) { for(j=i;j>3;j--)s+=i*j; } printf("%f\n",s); }