13 lines
205 B
C
13 lines
205 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int num;
|
|
num = 1;
|
|
|
|
printf("I am a simple ");
|
|
printf("computer.\n");
|
|
printf("My favorite number is %d because it is first.\n", num);
|
|
|
|
return 0;
|
|
} |