#43833: EZ 一發AC


cat_star_knight (幽靈貓神)

學校 : 臺北市立麗山國中
編號 : 290235
來源 : [111.248.217.102]
最後登入時間 :
2024-12-19 20:44:13

while 1:
 try:
  a,b=map(int,input().split())
  c,d=map(int,input().split())
  e=a*d-b*c
  if e==0:
   print('cheat!')
  else:
   print('%.5f %.5f'%(d/e,-b/e))
   print('%.5f %.5f'%(-c/e,a/e))
 except:
  break