#include <iostream>
#include <string>

int main()
{
	for (int i = 1; i <= 100; i++)
	{
		std::string three = !(i % 3) ? "Fizz" : "";
		std::string five = !(i % 5) ? "Buzz" : "";
		std::cout << (three.empty() && five.empty() ? std::to_string(i) : three + five) << "\n";
	}
	return 0;
}