13 lines
161 B
C
13 lines
161 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
int no;
|
|
|
|
printf("Input an integer: ");
|
|
scanf("%d", &no);
|
|
|
|
printf("You inputed %d.\n", no);
|
|
|
|
return 0;
|
|
}
|