#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 计算两个数之和
# @param s string字符串 表示第一个整数
# @param t string字符串 表示第二个整数
# @return string字符串
#
class Solution:
    def solve(self , s: str, t: str) -> str:
        # write code here
        i, j = len(s) - 1, len(t) - 1
        carry = 0
        res = []
        while i >= 0 or j >= 0 or carry:
            digit_s = int(s[i]) if i >= 0 else 0
            digit_t = int(t[j]) if j >= 0 else 0
            total = digit_s + digit_t + carry
            carry = total // 10
            res.append(str(total % 10))
            i -= 1
            j -= 1
        return ''.join(reversed(res))