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
Instead of putting input("Escribe el Valor de la 1ra Variable : ")
input("Escribe el Valor de la 1ra Variable : ")
Put int(input("Escribe el Valor de la 1ra Variable : ")
int(input("Escribe el Valor de la 1ra Variable : ")
That converts the input to an integer.
It is failing because input() returns a string. To convert it to an integer, you can use int(some_string).
input()
int(some_string)