// You can't put a string value into an INT, you either need to convert it (if you're string is composed of and number)
// Or you need to change the variable content
// How to convert string to int ?
yourVariable = int(stringVariable)
// Convert int to string
yourVariable = str(intVariable)
#avoiding invalid literal is to take float format and cover it with int
print(int(float('55063.000000')))