AT_abc470_a [ABC470A] Fizz

Description

You are given a positive integer $ N $ . Output $ N $ lines. The $ i $ -th line $ (1\le i\le N) $ should contain `Fizz` if $ i $ is a multiple of $ 3 $ , and $ i $ if $ i $ is not a multiple of $ 3 $ .

Input Format

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

Output Format

Output the answer.

Explanation/Hint

### Sample Explanation 1 The first line should contain $ 1 $ since $ 1 $ is not a multiple of $ 3 $ . The second line should contain $ 2 $ since $ 2 $ is not a multiple of $ 3 $ . The third line should contain `Fizz` since $ 3 $ is a multiple of $ 3 $ . The fourth line should contain $ 4 $ since $ 4 $ is not a multiple of $ 3 $ . ### Constraints - $ N $ is an integer between $ 1 $ and $ 100 $ , inclusive.