8 lines
127 B
C
8 lines
127 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
printf("I am %d years old \nHe is %d years old\n", 21, 22);
|
|
return 0;
|
|
}
|