• assignment
  • unpacking

OP has (200,300), wants x = 200; y = 300.

tup = ('200', '300')
first, second = tup
first_int, second_int = map(int, tup)