FIZZ-BUZZ
Fizz-Buzz is a coding challenge that takes a loop value and two input numbers from the user. The algorithm then begins counting towards the loop value, starting at 1. If the algorithm comes across a number that is a multiple of the first input, "Fizz" will be printed to the screen, with "Buzz" being printed for multiples of the second input, and "Fizz-Buzz" for multiples of both.