Binary to Decimal

Task

Write a program that converts a given 6-bit binary number to the corresponding decimal number.

Input

Een binary number consisting of 6 bits.

Output

One line of the form Het opgegeven binair getal komt overeen met x.

Example

Below is a sample output of the task. The text in red represents user input and is logically not printed out by your program.

101101
Het opgegeven binair getal komt overeen met 45.

Remarks and tips