Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Erisa Terolli.
Crytography
Mr. Alban has a cryptographic company which uses a computerized system named Secret.
Its main job is encrypting users passwords to protect them against different attacks.
Each user must submit a 5 digit integer as a password. Secret uses the following encrypting schema:
- The first is swapped with the fifth digit.
- The second is swapped with the fourth digit.
- The third digit is replaced with the result of adding 7 to the digit and getting the remainder after dividing the new value by 10.
Question: Write a program that
outputs the Encrypted password entered by a user into Secret system.
Input specification
There is a 5 digit number.
Output specification
You will show the encrypted 5 digit number.
Sample Input I
12345
|
Sample Input II
70341
|
Sample Output I
54021
|
Sample Output II
14007
|
Для отправки решений необходимо выполнить вход.
|