using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Programming { class Program { static void Main(string[] args) { double K = double.Parse(Console.ReadLine()); //現在% double S = double.Parse(Console.ReadLine()); //残り(分) //1%あたりにかかる時間 double m = S / (100 - K); //100%の場合にかかる時間 m = m * 100; Console.WriteLine(Math.Floor(m)); } } }