def my_pow(a, n, r=1): # [a, n, m, r] = [底, 指数, 返値の最大値, 初項] r = ((r * a) % 1000000007) if n & 0b1 else r if n > 2: return my_pow((a * a) % 1000000007, n // 2, r) else: return r def my_mul(a, b): # a*b return (a * b) % 1000000007 def my_div(a, b): # a/b return (a * my_pow(b, 1000000005)) % 1000000007 # 標準入力 input_str = "100000 100000 100000" # 入力の分解 # str = input() output_max = 1000000000 + 7 s = input_str s = s.split() inp = [int(tmp) for tmp in s] a = inp[0] b = inp[1] c = inp[2] # 階乗のチートシート作成 my_fact = [-1, 1, 1] tmp = 1 for i in range(2, 300000): tmp *= i tmp %= output_max my_fact.append(tmp) # 2のべき乗のチートシート作成 my_2xp = [1] tmp = 1 for i in range(1, 299999): tmp *= 2 tmp %= output_max my_2xp.append(tmp) res = 0 k = a + b + c - 1 for i in range(0, a): k -= 1 tmp = my_2xp[k] - 1 tmp = (tmp * my_fact[k]) % output_max res += my_div(tmp, my_fact[a - i]) res %= output_max res = my_div(res, (my_fact[b] * my_fact[c]) % output_max) print(res)