****Test: #1, time: 77 ms., memory: 0 KB, exit code: 1, checker exit code: 0, verdict: RUNTIME_ERROR****
here is the code :
n = int(input()) for t in range(0, n): t = int(input()) if t % 3 == 0 and t % 5 == 0: print("FizzBuzz") elif t % 3 == 0: print("Fizz") elif t % 5 == 0: print("Buzz") elif t % 3 != 0 or t % 5 != 0: print("")








Hey spaghetti, there are no testcases in original problem. Just a single integer N.