You can put this solution on YOUR website! Find two consecutive positive odd integers whose product is 195
------------
Hint: =~ 14
--> 13 & 15
------------
the hard way:
x*(x+2) = 195
Now you have to factor 195, which is where we started.
=================
Not as hard way:
(x-1)*(x+1) = 195 same as the hint