f = open("gauss","r")
for line in f:
  x =  float(line.split()[0])
  y =  float(line.split()[1])
  print x,y
f.close()
