What should i do about this error ?

Revision en1, by lullaboy, 2020-08-27 21:33:23

****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("")

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English lullaboy 2020-08-27 21:33:23 437 Initial revision (published)