import sys input = lambda :sys.stdin.readline()[:-1] def main(): W, Z, B = input().split() W, Z = int(W), int(Z) B = float(B) print(int((W+Z) * (B+1))) if __name__ == '__main__': main()