Method 1:
This is a selection problem where we are selecting three distinct numbers from 1 to 8 (8 nos) which can be selected in 8C3 ways = 56
Method 2:
From above question, it can be conclude that maximum of a,b,c cannot be more than 8
consider, one of a,b,c as 1, then we have following sets considering one of the three as 1
123,124,125,126,127,128(Total 6)
134,135,136,137,138 (Total 5)
145,146,147,148 (Total 4)
156,157,158(Total 3)
167,168 (Total 2)
178(total 1)
So if we consider one of the value as 1 then we get total combinations of a,b and c = 6+5+4+3+2+1 = 21
Similarly consider one of the values as 2, then we get following combinations
234,235,236,237,238 (Total 5) (Note 213 cannot be considered here because it was already covered with 123)
245,246,247,248 (Total 4)
Total 3
Total 2
Total 1
Summation = 5+4+3+2+1 = 15
Here you can see the pattern
next summation will be = 4+3+2+1 = 10 (with 3)
next summation will be = 3+2+1 = 6 (with 4)
next summation will be = 2+1 = 3 (with 5)
next summation will be = 1 (with 6)
Grand summation = 21+15+10+6+3+1= 56