#include #include using namespace std; long calc(long n){ if (n <= 1){ return n; }else{ return (calc(n - 1) + calc(n - 2)); } } int main(){ struct timeval tv1, tv2; gettimeofday(&tv1, NULL); for (int i=0;i<30;i++){ //cout<