
# phis.py

import math

phi = (math.sqrt(5)+1)/2
phi2 = phi * phi
print("n   xs  ys")
for i in range(19):
  print(f"{i:2d}  {int(i*phi):2d}  {int(i*phi2):2d}")
