10 lines
108 B
C
10 lines
108 B
C
|
#include <stdio.h>
|
||
|
|
||
|
char * text();
|
||
|
|
||
|
int main(int argc, char * * argv)
|
||
|
{
|
||
|
printf(text());
|
||
|
return 0;
|
||
|
}
|