/******************************************************************************
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()
{
printf("-------------------------------\n");
printf("상품명\t총수량\t재고\t가격\n");
printf("-------------------------------\n");
printf("G5\t100\t45\t965000\n");
printf("S7\t200\t145\t985000\n");
printf("NOTE5\t35\t2\t1105000\n");
printf("-------------------------------\n");
printf("계속하려면 아무 키나 누르십시오...");
return 0;
}