using System;
using static System.Math;
public class Program
{
public static void Main()
// Sin( 60 * PI/180 ) - Radians to degrees
Console.WriteLine( 980/(Sin(60 * (PI/180))) );
}