Write a Python program that asks the user for an integer input and returns the square of it. If the input is not an integer, return the string “Error: Input is not an integer”.
Example 1:
Input: "5"
Output: 25
Example 2:
Input: "abc"
Output: "Error: Input is not an integer"