#include <iostream>
#include <cstdlib>
#include <iostream>
#include <ctime>
#include <string>

int main() 
{
	std::srand(std::time(0));
    int random_variable = 11;
	
	std::cout<<"Genrated number: "<<random_variable<<std::endl;
	
	std::string result;
	if (random_variable % 3 == 0) 
	{
		result += "Fizz";
	}
	
	if (random_variable % 5 == 0)
	{
		result += "Buzz";
	}
	
	if (result.empty())
	{
		result += random_variable;
	}
	
	std::cout<<result<<std::endl;
	
	return 0;
}