Value user_num is read from input. Write a while loop that iterates until user_num is negative. In each iteration: Update value result as follows: If user_num is not divisible by 5, output 'win' and increment result. Otherwise, output 'lose' and do not update result. Then, read a value from input as an integer into variable user_num.