display all pair of 2-digit combinations that will sum up to the input

how would a program that accepts a 2-digit number ranging from 20 to 99, display all pair of 2-digit combinations that will sum up to the input.
Example: input: 12
output: 10 + 2, 5 + 7, 6 + 6