/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
int main()
{
int total = 89; // 총점
float average = 95.2f; // 평균
printf("총점: %d\n", total); // 총점 출력
printf("평균: %.2f\n", average); // 평균 출력력
printf("총점: %d, 평균: %.2f\n", total, average);
return 0;
}