strNumber = input("Type a two digit number:") s1 = strNumber[0] s2 = strNumber[1] total = int(s1) + int(s2) print("Tong cua 2 so trong so ban nhap la " + str(total))