I cannot get input in Python 3.6.
In some problems I use sys.stdin.readline() for single line or I loop in sys.stdline and it works fine.
But in other problems ( TREE2 for example) I gets an empty string again and again. Trying other options, with input() it fails reaching EOF (EOFError: EOF when reading a line) and raw_input() is not available.
Any suggestions?