using System; using System.Collections.Generic; using System.Linq; namespace yukicode { public class Program { public static string Solver(System.IO.TextReader reader) { var k = MyLib.GetIntList( reader.ReadLine(), ' ' ); int r; var q = Math.DivRem( k[ 1 ], k[ 0 ], out r ); return r == 0 ? q.ToString() : "NO"; } private static void Main() { Console.WriteLine( Solver( Console.In ) ); } } public class MyLib { public static string Ordinalization(int num) { string surfix = "stndrdth"; return string.Format( "{0}{1}", num, ( 0 < num % 10 && num % 10 <= 4 ) && ( ( num % 100 ) / 10 != 1 ) ? surfix.Substring( ( num % 10 - 1 ) * 2, 2 ) : surfix.Substring( 6 ) ); } public static List GetIntList(string input, char delimitor) { return input.Split( delimitor ).ToList().ConvertAll( int.Parse ); } public static List GetIntList(string input, char[] delimitors) { return input.Split( delimitors ).ToList().ConvertAll( int.Parse ); } } }