/*
Create a method that accepts an integer.
If integer is divisible by 3, return "Bacon".
If integer is divisible by 5, return "Egg".
If integer is divisible by both 3 and 5, return "BaconEgg".
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("done.");
}