0xe387ad0f…f024sent to0xcdf8d568…d4c0·#14,536,681·0x53e09e57…af3db4
```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;
}
```