You can
put this solution on YOUR website!Since you need to increase the display by only two, you need to find a multiple of positive twelve and a multiple of negative seven that have a difference of positive two...
The brute force way is to just list those multiples:
12, 24, 36, 48, 60, 72, 84, 96, ...
7, 14, 21, 28, 35, 42, 49, 56, 63, 70, 77, 84, ...
until you find a pair differing by exactly two...
Though 12 and 14 differ by two, that would be negative two and incorrect...
The correct pair is 72 and 70, and the number of keystrokes to get there would be
6 + 10 = 16 keystrokes