using System; public class Program { static void Main() { // 一歩あたりのAセンチメートル、Bセンチメートルの距離を歩く string s = Console.ReadLine(); string[] t = s.Split(' '); int a = int.Parse(t[0]); int b = int.Parse(t[1]); int x; if((b % a)==0){ x = b / a; }else{ x = b / a + 1; } Console.WriteLine(x); } }