#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); string s; cin >> s; string ans = ""; int sumA = 0; for(char c : s) sumA += c - '0'; if(sumA % 3 == 0) ans += "Fizz"; int n = int(s.size()); int sumB = 0; for(int i = n - 1; i >= 0; i--) { sumB += (s[i] - '0') * ((n - i) % 2 == 0 ? -1 : +1); } if(sumB % 5 == 0) ans += "Buzz"; if(ans.empty()) ans = s; cout << ans << "\n"; }