using System; namespace y { class Program { static void Main(string[] args) { string n = Console.ReadLine(); int a = 0; int b = 0; int c = 0; bool f = true; foreach (var s in n) { a += int.Parse(Convert.ToString(s)); if (f) { b += int.Parse(Convert.ToString(s)); f = false; } else { c += int.Parse(Convert.ToString(s)); f = true; } } string ans = ""; if (a % 3 == 0) { ans += "Fizz"; } if ((b - c) % 5 == 0) { ans += "Buzz"; } if (ans.Length == 0) { ans = n; } Console.WriteLine(ans); } } }