# FizzBuzz

## Overview

The FizzBuzz kata is based on the classroom game of the same name used to teach children about division. Starting from 1, each student in turn calls out the next number. However, if the number is divisible by 3 then they must call out 'Fizz', if it's divisible by 5 then 'Buzz' or if it's divisible by both 3 and 5 then 'FizzBuzz'.

## Objectives

* **Write a program that prints the numbers from 1 to 100.**
  * If the number is a multiple of 3 print 'Fizz' instead of the number.
  * If the number is a multiple of 5 print 'Buzz' instead of the number.
  * If the number is a multiple of both 3 and 5 print 'FizzBuzz' instead of the number.

## Example

The output should look like this:

```
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
...
98
Fizz
Buzz
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://asos.gitbook.io/coding-style/katas/fizzbuzz.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
