using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoderTest { class Program { static void Main(string[] args) { string N = Console.ReadLine(); string M = Console.ReadLine(); int yosan = int.Parse(N); int num = int.Parse(M); int ans = yosan / num; string ansstr = ans.ToString().Remove(1, ans.ToString().Length-1); while(ansstr.Length!=ans.ToString().Length) { ansstr = ansstr + "0"; } Console.WriteLine(ansstr); } } }