First N terms whose sum of digits is a multiple of 10
Given an integer N, the task is to print the first N terms whose sum of digits is a multiple of 10. First few terms of the series are 19, 28, 37, 46, 55, ...Examples: Input: N = 5 Output: 19 28 37 46 55Input: N = 10 Output: 19 28 37 46 55 64 73 82 91 109 Recommended: Please try your approach on {IDE