Create a function that checks if the argument is an integer or a string. Return "int" if it's an integer and "str" if it's a string.
intOrString(8) ➞ "int"
intOrString("Hello") ➞ "str"
intOrString(9843532) ➞ "int"
Input will either be an integer or a string.