A,B=map(int,input().split()) if A%2==B%2: ans=(A+1)*(B+1)+A*B else: ans=(A+1)*B+A*(B+1) mod=10**9+7 ans%=mod print(ans)