#include<stdio.h>
int main()
{
    float arr[5][6]={0};
    int r,c;
    float s;
    for(r=0;r<5;r++){
        s=0;
        for(c=0;c<5;c++){
            scanf("%f",&arr[r][c]);
            s+=arr[r][c];
            if(c==4){
                arr[r][5]=s;
            }
        }
    }
    for(r=0;r<5;r++){
        for(c=0;c<6;c++){
           printf("%.1f ",arr[r][c]);
            if(c==5)
            printf("\n");
        }
    }
    return 0;
}