The true type

Report a typo

Write a program that will read user input and print the type using the ast.literal_eval() helper.

Sample Input 1:

7

Sample Output 1:

<class 'int'>
Write a program in Python 3
import ast

# put your code here
___

Create a free account to access the full topic