#include <stdio.h>
#include <time.h>
int main(void) {
clock_t begin = clock();
long sum = 0;
for (long i = 0; i < 1000000; i++) {
sum += i;
}
clock_t end = clock();
double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
printf("%f seconds", time_spent);
return 0;
}
/*
run:
0.003128 seconds
*/