7 lines
138 B
C
7 lines
138 B
C
#include <stdio.h>
|
|
|
|
int main () {
|
|
char txt[] = "If i live in a \"different\" universe i love you";
|
|
printf ("%s", txt);
|
|
return 0;
|
|
} |