#include <stdio.h>

struct student {
    int id;    /* 学籍番号 */
    int eng;   /* 英語 */
    int math;  /* 数学 */
    int sci;   /* 理科 */
};

int main() {

    struct student s1 = {17001, 60, 100, 20};
    struct student s2;

    int total;

    s2 = s1;

    total = s2.eng + s2.math + s2.sci;

    printf("学籍番号:%d 英語:%d 数学:%d 理科:%d 合計:%d\n",
           s2.id, s2.eng, s2.math, s2.sci, total);

    return 0;
}