#include <stdio.h>
#include <string.h>
int main() {
char yourName[] = "You";
char myName[] = "Me";
int daysTogether = 5 * 30; // ครบรอบ 5 เดือน โดยประมาณ
printf("Hi %s 💖\n", yourName);
printf("It's been %d days since we started this beautiful journey together.\n", daysTogether);
printf("%s + %s = 💕 Forever\n", myName, yourName);
char loveMessage[] = "I love you more than code!";
for(int i = 0; i < strlen(loveMessage); i++) {
printf("%c", loveMessage[i]);
}
printf("\n\nreturn 0 (but my heart always returns to you ❤️);\n");
return 0;
}