Arduino Keyboard num lock automatically enable

Hi all from Russia! Learn the standard library keyboard and there is a need that when I connect my Arduino to the computer automatically activated num lock button. How would me easier to use ?

The USB scancode for NumLock seems to be 83. To send a raw USB scancode you add 136 to it.

Keyboard.press(136+83);