CF831B.Keyboard Layouts

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are two popular keyboard layouts in Berland, they differ only in letters positions. All the other keys are the same. In Berland they use alphabet with 2626 letters which coincides with English alphabet.

You are given two strings consisting of 2626 distinct letters each: all keys of the first and the second layouts in the same order.

You are also given some text consisting of small and capital English letters and digits. It is known that it was typed in the first layout, but the writer intended to type it in the second layout. Print the text if the same keys were pressed in the second layout.

Since all keys but letters are the same in both layouts, the capitalization of the letters should remain the same, as well as all other characters.

输入格式

The first line contains a string of length 2626 consisting of distinct lowercase English letters. This is the first layout.

The second line contains a string of length 2626 consisting of distinct lowercase English letters. This is the second layout.

The third line contains a non-empty string ss consisting of lowercase and uppercase English letters and digits. This is the text typed in the first layout. The length of ss does not exceed 10001000 .

输出格式

Print the text if the same keys were pressed in the second layout.

输入输出样例

  • 输入#1

    qwertyuiopasdfghjklzxcvbnm
    veamhjsgqocnrbfxdtwkylupzi
    TwccpQZAvb2017
    

    输出#1

    HelloVKCup2017
    
  • 输入#2

    mnbvcxzlkjhgfdsapoiuytrewq
    asdfghjklqwertyuiopzxcvbnm
    7abaCABAABAcaba7
    

    输出#2

    7uduGUDUUDUgudu7
    
首页