We can add a two digit number with another two digit number to get a two digit number.
For example, 22+23=45 or 10+89=99 are such addition operations. How many such all-two-digit addition operation can we do?
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.
Using Mathematica
Length@Select[Union[Sort/@Tuples[Range[10,99],{2}]],IntegerLength@Total@#==2&]
returns 1640