#!/usr/bin/perl -w

for $i (0..99) {
	print($i."\t".sin($i) * sin($i / 21.4242)."\n");
}

