------
## 最终结论
```python
def subject_marks(marks):
    return sorted(marks, key=lambda x: x[1])
```