PHP Compiler Testing
Plus Minus

Have the function PlusMinus(num) read the num parameter being passed which will be a combination of 1 or more single digits, and determine if it's possible to separate the digits with either a plus or minus sign to get the final expression to equal zero. For example: if num is 35132 then it's possible to separate the digits the following way, 3 - 5 + 1 + 3 - 2, and this expression equals zero. Your program should return a string of the signs you used, so for this example your program should return -++-. If it's not possible to get the digit expression to equal zero, return the string not possible.

If there are multiple ways to get the final expression to equal zero, choose the one that contains more minus characters. For example: if 
num is 26712 your program should return -+-- and not +-+-.

Examples

Input: 199
Output: not possibleInput: 26712
Output: -+--

 

Primes

Have the function Primes(num) take the num parameter being passed and return the string true if the parameter is a prime number, otherwise return the string false. The range will be between 1 and 2^16.

Examples

Input: 4
Output: false

Input: 1709
Output: true