while 1: a,b=map(int,raw_input().split());s=0 while a*b:s+=a*b;a-=1;b-=1 print s