For each number from 1 to 100, print exactly one line of output based on these rules:
Fizz
Buzz
FizzBuzz
Hint: A number is a multiple of 3 when dividing it by 3 leaves a remainder of 0.
#include <iostream>int main() { // TODO: loop from 1 to 100 and print "Fizz", "Buzz", "FizzBuzz", or the number itself return 0;}