Post

@Python_Dv Answer: C
Solution: x is an int, and y is a string.
The call to `int(y)` obtains the integer value from y (string "5") ie the integer 5.
Thus, int(y) is integer 5.
x is also integer 5.
The printed value is their sum, ie 10.
int is a handy function for converting to integer.
English

