#P1225A. Forgetting Things

Forgetting Things

No submission language available for this problem.

Description

Kolya is very absent-minded. Today his math teacher asked him to solve a simple problem with the equation a+1=ba + 1 = b with positive integers aa and bb, but Kolya forgot the numbers aa and bb. He does, however, remember that the first (leftmost) digit of aa was dad_a, and the first (leftmost) digit of bb was dbd_b.

Can you reconstruct any equation a+1=ba + 1 = b that satisfies this property? It may be possible that Kolya misremembers the digits, and there is no suitable equation, in which case report so.

The only line contains two space-separated digits dad_a and dbd_b (1da,db91 \leq d_a, d_b \leq 9).

If there is no equation a+1=ba + 1 = b with positive integers aa and bb such that the first digit of aa is dad_a, and the first digit of bb is dbd_b, print a single number 1-1.

Otherwise, print any suitable aa and bb that both are positive and do not exceed 10910^9. It is guaranteed that if a solution exists, there also exists a solution with both numbers not exceeding 10910^9.

Input

The only line contains two space-separated digits dad_a and dbd_b (1da,db91 \leq d_a, d_b \leq 9).

Output

If there is no equation a+1=ba + 1 = b with positive integers aa and bb such that the first digit of aa is dad_a, and the first digit of bb is dbd_b, print a single number 1-1.

Otherwise, print any suitable aa and bb that both are positive and do not exceed 10910^9. It is guaranteed that if a solution exists, there also exists a solution with both numbers not exceeding 10910^9.

Samples

Sample Input 1

1 2

Sample Output 1

199 200

Sample Input 2

4 4

Sample Output 2

412 413

Sample Input 3

5 7

Sample Output 3

-1

Sample Input 4

6 2

Sample Output 4

-1