以下のコードで、関数の戻り値の型は何ですか? ```python def get_coordinates(): x = 10 y = 20 return x, y result = get_coordinates() ```