You answered this one already, but did you use Python? All theother solutions with Python do not work.
Solution
userNum = int(input(‘Enter integer:n’))print(‘You entered: ‘ + str(userNum))print(str(userNum) + ‘ squared is ‘ + str(userNum * userNum))print(‘And ‘ + str(userNum) + ‘ cubed is ‘ + str(userNum * userNum * userNum) + ‘ !!’)userNum2 = int(input(‘Enter another integer:n’))print(str(userNum) + ‘ + ‘ + str(userNum2) + ‘ is ‘ + str(userNum + userNum2))print(str(userNum) + ‘ * ‘ + str(userNum2) + ‘ is ‘ + str(userNum * userNum2))
#
OR
OR