#include main(){float s=0;int k;for(k=1;k<=100;k++){s+=k;if (k<=50) s+=k*k;if (k<=10) s+=1.0/k;}printf("%f",s);}