0xe387…f024

All memos sent from and to 0xe387…f024.

```markup /**************************************************** Programmer's Romance ****************************************************/ #include <iostream> #include <limits> using namespace std; int LIFE_LENGTH = numeric_limits<int>::max(); void loveYouForever(string my_lover_name) { for( int i=0; i<=LIFE_LENGTH; i++ ){ cout << "Dear " << my_lover_name << ", I love U" << endl; } } int main() { string my_lover_name; cout << "My love: " << endl; cin >> my_lover_name; loveYouForever(my_lover_name); return 0; } ```