from math import * a=[[0]*4]*4 for i in range(4): a[i]=list(map(float,input().split())) print (a)