house number = 50
-----
the work out:
Subtracting:
n>m; n,m integers
28 is 1*28, 2*14, or 4*7
Case 1:
n-m = 1
n+m = 28
(adding): 2n = 29 non-integer solution, no good
Case 2:
n-m = 2
n+m = 14
2n = 16 --> n=8 --> m=6 this solution works
Case 3:
n-m = 4
n+m = 7
2n = 11 non-integer solution, no good
Using case 2, and:
--> x = 50
Check using:
(ok)