#include <math.h>
#include "timer.h"

int main()
{
	int i;
	long long s = get_cycles();
	double a = 44.4;
	for (i = 0; i < 10000000; i++)
	{
		a = sin(a + i * 3.14/2 - 33.0);
	}
	long long e = get_cycles();
	printf("%f\n", a);
	printf("Time :%f\n", cycles_to_ns(e - s) / 1e9);
}
