Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/07/12 in all areas

  1. #!/usr/bin/python f = open("test.txt", "r") while True: line = f.readline() if (len(line) == 0): break line = line.split(" ") x = int(line[0]) y = int(line[1]) print x print y
    1 point
×
×
  • Create New...