SHIFT Shifts a numeric value the given amount
MATH
SHIFT value1 value2
value1 - value to shift
value2 - how many places to shift
/LEFT - Shift Left
/RIGHT - Shift Right
SHIFT Shifts a numeric value the given amount
x: shift/right 132 2
write/line x
x: shift/left 132 2
write/line x
Result
33
16
To be done. No other related method names assigned yet.