#include <stdio.h> int main() { int i,j,x=0; for(i=0;i<50;i++) for(j=0;j<i+1;j++) x=x+1; printf("%d\n",x); return 0; }