Problem
1. Write a short Java function, isMultiple, that takes two long values, n and m, and returns true if and only if n is a multiple of m, that is, n = mi for some integer i.
2. Write a short Java function that takes an integer n and returns the sum of all the odd integers smaller than n.