MATLAB: Hump-day puzzler.

puzzle

If you have seen this before, please let others figure it out!
if (BLANK)
disp('I Love ')
else
disp('MATLAB')
end
What can replace BLANK to get the print-out (exactly): I Love MATLAB
How many solutions are there? For extra pride (or pain), how long did it take you to get it?

Best Answer

~fprintf('I Love ')
Solved in... a small number of seconds.