from random import randint as rd print(10) for i in range(10): print(800) for j in range(799): print(rd(700,799),end=' ') print(rd(700,799))
I am using this code for generating some test cases for Question E of round #640 but the hacking verdict is generator Crashed what does it mean and what I am doing wrong here.