#include <h.math>
#include <h.stdlib>

void main(void)
{
	int i;

	mode(4);
	settime(0);
	for (i=0; i<1280; i++)
		plot(69, i, sin(rad(i)) * 500 + 500);
	printf("%d\n", time());
}
