html
Write a backtracking program that prints all the combinations of length
n that can be made with the letters ‘A’, ‘C’, ‘G’, ‘T’ for a given
n.
Input
The input consists of a natural number n > 0.
Output
Print all the combinations of n letters ‘A’, ‘C’, ‘G’, ‘T’ in
lexicographical order.