#include <iostream>
#include <iomanip>
#include <cmath>

int main()
{
    int x=60; //x is the measure of angle in degrees.
    int V= 144; //Initial velocity
	double t= 0.5; //Seconds
	double h; // height
	

	std::cout <<  "Time" << '\t'
	<< "Height" << std::endl;
	while(t<=8.0)
	{
	    h = V*t*sin(x*M_PI/180)- 16*t*t;
	    std::cout <<  t << '\t' << h << std::endl;
	    t += 0.5;
	}
	return 0;
}