#include <stdio.h>main(){int i,j;float a[3][3];for(i=0;i<3;i++)for(j=0;j<3;j++){scanf("%f",&a[i][j]);printf("%f",a[i][j]);}getch();}