Company: GEP_3Dec
Difficulty: medium
Replace Characters Replace Characters Description You are given 2 strings, A and B . The string B is a binary string. You must perform 2 operations on string B : 1. Replace 1 s with the uppercase letters of the corresponding character in string A . 2. Replace 0 s with the lowercase letters of the corresponding character in string A . Print the new string B obtained after performing the operations. Note: The lengths of the A and B strings are equal. Function Description In the provided code snippet, implement the provided replacecharacters(...) method to find the new string B obtained after performing the operations. You can write your code in the space below the phrase "WRITE YOUR LOGIC HERE". Input Format The first line contains a string A . The second line contains a string B . Output Format The output contains a string, denoting the new string B obtained after performing the operations. Constraints 1 <= length of strings <= 10 3 Example Sample Input: abCdef 100111 Sample Outpu