"""
a = 10.0
print(a)
print(type(a))
b = int(a)
print(b)
print(type(b))

int()
float()
str()
"""
a = int(input("Enter The Value of A : "))
b = int(input("Enter The Value of B : "))
c = a + b
print("Total : " + str(c))
