Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".
Additional tasks
- For multiples of seven print 'Wizz'
- For numbers which are multiples of three and seven print 'FizzWizz'
- For numbers which are multiples of five and seven print 'BuzzWizz'
- For numbers which are multiples of three, five and seven print 'FizzBuzzWizz'
- Also print 'Fizz' for numbers which contain a three
- Also print 'Bizz' for numbers which contain a five
- Also print 'Wizz' for numbers which contain a seven