AT_abc429_a [ABC429A] Too Many Requests

Description

You are given positive integers $ N $ and $ M $ . Print $ N $ lines. The $ i $ -th line $ (1\leq i\leq N) $ should contain `OK` if $ i\leq M $ , and `Too Many Requests` otherwise.

Input Format

The input is given from Standard Input in the following format: > $ N $ $ M $

Output Format

Print $ N $ lines according to the instructions in the problem statement.

Explanation/Hint

### Sample Explanation 1 Since $ N=5 $ and $ M=3 $ , print `OK` on the $ 1 $ st, $ 2 $ nd, and $ 3 $ rd lines, and print `Too Many Requests` on the $ 4 $ th and $ 5 $ th lines. ### Sample Explanation 2 Since $ N=3 $ and $ M=5 $ , print `OK` on the $ 1 $ st, $ 2 $ nd, and $ 3 $ rd lines. ### Constraints - $ 1 \leq N \leq 10 $ - $ 1 \leq M \leq 10 $ - $ N $ and $ M $ are integers.