11 lines
174 B
C
11 lines
174 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
int input;
|
||
|
scanf("%d", &input);
|
||
|
printf("%d\n", input);
|
||
|
printf("%d\n", input);
|
||
|
printf("%d\n", input);
|
||
|
|
||
|
return 0;
|
||
|
}
|