#!/bin/python import sys n,m = raw_input().strip().split(' ') n,m = [int(n),int(m)] print n+m-2