/******************************************************************************
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;
}