using System;
namespace ConsoleApp24
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("введите начальную скорость");
int vstart = Convert.ToInt32(Console.ReadLine());
int g = 10;
Console.WriteLine("введите угол");
double ugol = Convert.ToDouble(Console.ReadLine());
double vvert = vstart * Math.Sin(ugol);
double vgor = vstart * Math.Cos(ugol); // тут почему - то неправильно косинус выводит
double t = vvert * 2 / g;
double S = vgor * t;
Console.WriteLine(S);
Console.WriteLine(t);
}
}
}