9 lines
89 B
C
9 lines
89 B
C
#include<stdio.h>
|
|
int main()
|
|
{
|
|
printf("test\n");
|
|
printf("test again\n");
|
|
return 0;
|
|
}
|
|
|