/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
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;
}