Can anyone tell me what is the problem with this Mathematica code?
Nmax = 10;
Mmax = 10;
A = 4/Pi^2*Integrate[x*Sin[n*x]*Sin[m*y], {x, 0, Pi}, {y, 0, Pi}];
B = 4/Pi^2*Integrate[Sin[n*x]*Sin[m*y], {x, 0, Pi}, {y, 0, Pi}];
u[x_, y_, t_] =
Sum[Sin[n*x]*
Sin[m*y] (A*Cos[(n^2 + m^2)*t] +...