#include <stdio.h>
main()
{
int x;
float s;
s=0;
for (x=1;x<=10;x++) s=s+1.0/x;
printf("Zbir reciprocnih vrednosti prvih 10 prirodnih brojeva je:  ");
printf("%f\n",s);
}
