8 lines
133 B
C
8 lines
133 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int j = 1;
|
|
printf("Printing %i,\nalthough printing foxes is superior.", j);
|
|
return 0;
|
|
}
|