#include
int main(){int i,y1=1,y2=0; for(i=2;i<6;i++) y1*=i; for(i=2;i<101;i+=2) y2+=i; printf("1×2×3×4×5=%d\n2+4+6+8+…+100=%d\n",y1,y2); return 0;}