Merge two numbers. Given two two-digit numbers, merge their digits as shown in the tests below.
Input |
Correct answer |
12 34 |
1324 |
33 |
3535 |
29 |
2191 |
19 |
1199 |
74 |
7840 |
Python, Java
Merge two numbers. Given two two-digit numbers, merge their digits as shown in the tests below.
Input |
Correct answer |
12 34 |
1324 |
33 |
3535 |
29 |
2191 |
19 |
1199 |
74 |
7840 |