Problem Description
If the string starts with f print Fizz.
If the string ends with b return Buzz.
If both the f and b conditions are true, return FizzBuzz.
In all other cases, print the string unchanged.
Code for Strings FizzBuzz
Output Examples:
Example Input: fuel Output: Fizz Example Input: bob Output: Buzz Example Input: fib Output: FizzBuzz Example Input: goodness Output: goodness