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.
int_or_string(8) ➞ "int"
int_or_string("Hello") ➞ "str"
int_or_string(9843532) ➞ "int"
Input will either be an integer or a string.