What is the only positive integer that is twice the sum of its digits?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The required number should be double digit digit, therefore let say the number is 10a + b , where a and b are positive integers from 0 to 9
Now, applying the given condition i.e.
10a + b = 2(a + b)
8a = b
This implies that a = 1 & b = 8 The required number is 18