转化为int型相加,再输出转化为str

class Solution:
    def solve(self , s , t ):
        return str(int(s)+int(t))