#include <stdio.h>

int main(void)
{
    int kor = 70;
    int eng = 80;
    int mat = 90;

    int tot;

    tot = kor + eng + mat;

    printf("국어: %d, 영어: %d, 수학: %d\n", kor, eng, mat);
    printf("총점: %d", tot);

    return 0;








    
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: