i = gets.to_i if i%3==0 && i%5==0 i = "FizzBuzz" print i elsif i%3==0 i = "Fizz" print i elsif i%5==0 i = "Buzz" print i else print i end