Find all possible pairs of two natural numbers whose sum is 77 and their g.c.d. is 7

both numbers are multiples of 7.

77 = 7*11, so you want two numbers which sum to 11, and have no factors in common. That would be

1,10: 7+70 = 77
2,9: 14+63 = 77
...