eolymp
bolt
Try our new interface for solving problems
Məsələlər

Let it Bead

Let it Bead

"Let it Bead" company is located upstairs at \textbf{700} Cannery Row in Monterey, CA. As you can deduce from the company name, their business is beads. Their PR department found out that customers are interested in buying colored bracelets. However, over \textbf{90} percent of the target audience insists that the bracelets be unique. (Just imagine what happened if two women showed up at the same party wearing identical bracelets!) It's a good thing that bracelets can have different lengths and need not be made of beads of one color. Help the boss estimating maximum profit by calculating how many different bracelets can be produced. A bracelet is a ring-like sequence of \textbf{n} beads each of which can have one of \textbf{k} distinct colors. The ring is closed, i.e. has no beginning or end, and has no direction. Assume an unlimited supply of beads of each color. For different values of \textbf{n} and \textbf{k}, calculate the number of different bracelets that can be made. \InputFile Every line of the input file defines a test case and contains two integers: the number of available colors \textbf{k} followed by the length of the bracelets \textbf{n}. Input is terminated by \textbf{k} =\textbf{ n} = \textbf{0}. Otherwise, both are positive, and, due to technical difficulties in the bracelet-fabrication-machine, \textbf{k · n} ≤ \textbf{32}, i.e. their product does not exceed \textbf{32}. \OutputFile For each test case output on a single line the number of unique bracelets. The figure below shows the \textbf{8} different bracelets that can be made with \textbf{2} colors and \textbf{5} beads. \includegraphics{https://static.e-olymp.com/content/79/7990f55fb862a3ff60ce672b89ec163c0fe32d6f.jpg}
Zaman məhdudiyyəti 1 saniyə
Yaddaşı istafadə məhdudiyyəti 64 MiB
Giriş verilənləri #1
1 1
2 1
2 2
5 1
2 5
2 6
6 2
0 0
Çıxış verilənləri #1
1
2
3
5
8
13
21
Mənbə 2000 University of Ulm Local Contest, Problem B