The figure below depicts two congruent triangles with angle measures , , and . What is the measure of the obtuse angle formed by the hypotenuses of these two triangles?
[asy]
import olympiad;
size(80);
defaultpen(linewidth(0.8));
draw((0,0)--(3,0)--(0,4.25)--(0,0)^^(0,3)--(4.25,0)--(3,0)^^rightanglemark((0,3),(0,0),(3,0),10));
pair P = intersectionpoint((3,0)--(0,4.25),(0,3)--(4.25,0));
draw(anglemark((4.25,0),P,(0,4.25),10));
label("",P,2 * NE);
[/asy]