Concatenate Two Numbers Write Code Problem DescriptionGiven two numbers A and B. Concatenate the two numbers and print it.Problem Constraints1 <= A, B <= 104Input FormatThere are two input linesThe first line has a single integer A.The second line has a single integer B.Output FormatPrint in a single line the concatenated number.Example InputInput 1:-4 5 Input 2:-16 2 Example OutputOutput 1:-45 Input 2:-162 Example ExplanationExplanation 1:-Concatenating 4 and 5 will be 45. Explanation 2:-Concatenation 16 and 2 is 162. Show Answer