for i in range(1,101): s='' while i%3==0: s+='Fizz' i=i/3 while i%5==0: s+='Buzz' i=i/5 if s=='':print i else:print s