#include <cstdio>
// @brief Print character
// @param ASCII Value of character
inline void ___(int _$){printf("%c",_$);}
int main(void) // START
{
// _ holds the ASCII value, __ is only a multiplier
int _=1, __=_+_; //_ = 1, __ = 2
_++; // _ = 2
_*=_*_; // _ = 8
_*=_; // _ = 64
_+=(_/(__*__)); // _ = 80
_-=(__*__)*__; // _ = 72
___(_); // Print 'H'
_=(_--)-__; // _ = 69
___(_); // Print 'E'
__++; // __ = 3
_+=__; // _ = 72
__--; // __ = 2
_+=__*__; // _ = 76
___(_); // Print 'L'
__+=__%__; // Obfuscating spacer (does nothing [ adds 0 to _ ])
___(_); // Print 'L'
__++; // __ = 3
_+=__; // _ = 79
__--; // __ = 2
___(_); // Print 'O'
_/=__; // _ = 39
_-=__*__; // _ = 35
__++; // __ = 3
_-=__; // _ = 32
__--; // __ = 2
___(_); // Print ' '
_*=__; // _ = 64
_+=_/__; // _ = 96
__++; // __ = 3
_-=(__*__); // _ = 87
__--; // __ = 2
___(_); // Print 'W'
_-=((__*__)*__); // _ = 79
___(_); // Print 'O'
__++; // __ = 3
_+=__; // _ = 82
___(_); // Print 'R'
_-=__; // _ = 79
_-=__; // _ = 76
__--; // __ = 2;
___(_); // Print 'L'
_-=((__*__)*__); // _ = 68
___(_); // Print 'D'
return _-=_; // END
}