Convert Decimal to 2 bytes, I'm stumped

I also have no idea what this means. Try another way of explaining what you want to do.

Note: a 16 bit integer can be decomposed into two bytes as follows:

unsigned int n = 697;
byte upper =  n >> 8;
byte lower =  n & 0xFF;