15 lines
258 B
C
15 lines
258 B
C
|
|
#include <stdlib.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(void) {
|
||
|
|
char apostrophe='"';
|
||
|
|
printf(" {o,o}\n");
|
||
|
|
printf(" (__(\\");
|
||
|
|
printf("\n");
|
||
|
|
printf(" -");
|
||
|
|
printf("%c",apostrophe);
|
||
|
|
printf("-");
|
||
|
|
printf("%c",apostrophe);
|
||
|
|
printf("-\n");
|
||
|
|
return EXIT_SUCCESS;
|
||
|
|
}
|