Continue lendo linhas até que não haja mais python de entrada
//For HackerRank and HackerEarth platform below implementation is preferred:
while True:
try :
line = input()
...
except EOFError:
break;
Ghaith Alzin