SHA-224

No attempts yetTime limit1sMemory limit256 MB

Problem

You are given a string SS. Write a program that computes the SHA-224 hash of SS.

SHA-224 produces a 224-bit hash, so writing the result in hexadecimal always takes 56 digits. Most languages ship a SHA-224 implementation in the standard library or in a common cryptography library.

Input

The first line contains the string SS. SS consists only of uppercase letters, lowercase letters, and digits, and its length is at most 50.

Output

Print the SHA-224 hash of SS on the first line. Print it as 56 hexadecimal digits, using lowercase letters.