A, B = gets.chomp.split if B[0] == '-' puts A.to_i + B.to_i else str = A + B if str.to_i == 0 str = '0' end if str[0] == '-' && str[1] == '0' puts str else puts str.to_i end end