// scanf, if, printf<br>แสดงการเปรียบเทียบด้วย if กับตัวเลข
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <conio.h>
void main()
{
int n;
scanf(
"%d"
,&n);
if
(n > 5) {
printf(
"more than five"
);
}
else
"less than or equal five"
getch();