Thats my code, I don\'t know why the program gives me that Error.. PD: I\'m a beginner in this programming language.
import math while True: A=input(\"Escribe el
It is failing because input() returns a string. To convert it to an integer, you can use int(some_string).
input()
int(some_string)