#abc306b. [abc306_b]Base 2

[abc306_b]Base 2

Problem Statement

You are given a sequence A=(A0,A1,dots,A63)A=(A_0,A_1,\\dots,A_{63}) of length 6464 consisting of 00 and 11.

Find A020+A121+dots+A63263A_0 2^0 + A_1 2^1 + \\dots + A_{63} 2^{63}.

Constraints

  • AiA_i is 00 or 11.

Input

The input is given from Standard Input in the following format:

A0A_0 A1A_1 dots\\dots A63A_{63}

Output

Print the answer as an integer.


Sample Input 1

1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Sample Output 1

13

$A_0 2^0 + A_1 2^1 + \\dots + A_{63} 2^{63} = 2^0 + 2^2 + 2^3 = 13$.


Sample Input 2

1 0 1 0 1 0 0 0 0 1 0 0 1 1 0 1 1 1 1 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 1 0 1 0 1 0 1 1 1 1 0 0 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0

Sample Output 2

766067858140017173