// array int <br>รับค่าลงอาเรย์แบบ int และนำมาแสดงอย่างง่าย
/* http://www.thaiall.com/tc */
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
int x[3];
cin >> x[0];
cin >> x[1];
cin >> x[2];
cout << x[0] <<
"\n"
;
cout << x[1] <<
cout << x[2] <<
getch();
}