class Diff2Squares implements IntIntToInt { public int func(int m,int n) { return m*m-n*n; } }