#include <bits/stdc++.h>
#include <ctime>
using namespace std;
clock_t start,stop;
double duration;
int main(int argc, const char * argv[]) {
start = clock();
//mycode
stop = clock();
duration = ((double)(stop-start))/CLK_TCK;
cout<<duration<<endl;
return 0;
}