% Given a string n representing a number, and an integer k, shift the digits % of n to the left k places, effectively multiplying n by 10^k. % Used in the multiply algorithm function number = shiftLeft(n, k); number = n; for i=1:k number = [number '0']; end end