Situation B
Write a procedure that take a poitive integer a a parameter. If the number given to the procedure i no more than 30, the procedure hould return the abolute difference between that number and 30. If the number i greater than 30, the procedure hould return the number doubled. Example:
difference30(13) → 17
difference30(46) → 92
difference30(30) → 0