{"raw_statement":[{"iden":"statement","content":"Take in a number from 1 through 1000, print _Fizz_ if the number is divisible by 3, print _Buzz_ if the number is divisible by 5, or _FizzBuzz_ if the number is divisible by both. If none of these conditions are true, print nothing\n\nThe only line of input contains a single positive integer N between 1 and 1000 inclusively\n\n_Fizz_, _Buzz_, _FizzBuzz_, or nothing\n\n"},{"iden":"input","content":"The only line of input contains a single positive integer N between 1 and 1000 inclusively"},{"iden":"output","content":"_Fizz_, _Buzz_, _FizzBuzz_, or nothing"},{"iden":"examples","content":"Input1\nOutput\nInput3\nOutputFizz\nInput5\nOutputBuzz\nInput15\nOutputFizzBuzz\n"}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ N \\in \\mathbb{Z} $, with $ 1 \\leq N \\leq 1000 $.\n\n**Constraints**  \n$ 1 \\leq N \\leq 1000 $\n\n**Objective**  \nOutput:  \n$$\n\\begin{cases}\n\\text{Fizz} & \\text{if } 3 \\mid N \\text{ and } 5 \\nmid N \\\\\n\\text{Buzz} & \\text{if } 5 \\mid N \\text{ and } 3 \\nmid N \\\\\n\\text{FizzBuzz} & \\text{if } 3 \\mid N \\text{ and } 5 \\mid N \\\\\n\\text{nothing} & \\text{otherwise}\n\\end{cases}\n$$","simple_statement":"Read a number N.  \nIf N is divisible by 3 and 5, print \"FizzBuzz\".  \nElse if divisible by 3, print \"Fizz\".  \nElse if divisible by 5, print \"Buzz\".  \nOtherwise, print nothing.","has_page_source":false}