C/Age3.c

9 lines
123 B
C

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