# ITCS Python Class Assignment (for 15/12/2022)
###### tags: `ITCS Python Class`, `ITCS`, `python`, `assignment`
## Beginners' Assignments
These questions follow the progress of the class tightly. You should try to solve these problems!
### Assignment: FizzBuzz
Complete the program below, of a children's game called *FizzBuzz*.
#### Rules:
- The player says the number 1, then start to count upwards.
- If the number is a multiple of 3, "Fizz" is said instead.
- If the number is a multiple of 5, "Buzz" is said instead.
- If the number is both a multiple of 3 and 5, "FizzBuzz" is said instead.
A typical FizzBuzz game is like this:
"1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14, FizzBuzz, ..."
#### Program Objective
Complete the program such that it plays the game FizzBuzz **from 1 to 15**.
#### Expected Output
```
1
2
Fizz
...
FizzBuzz
```
## Challenging Assignments
No challenging assignments for this week.