#!/usr/bin/perl -w

for ($i=0; $i < 20; $i++) {
	print($i."\t".sin($i*1.69)."\n");
}

