#include struct Student { char name[20]; int koreanScore; int englishScore; }; int main() { struct Student students[5]; int totalKoreanScore = 0; int totalEnglishScore = 0; // 학생 정보 입력 받기 for (int i = 0; i < 5; i++) { scanf("%s %d %d", students[i].name, &students[i].koreanScore, &students[i].englishScore); totalKoreanScore += students[i].koreanScore; totalEnglishScore += students[i].englishScore..