Rule
Convert the given 100-digit binary integer into decimal.
Input
- You are given 100-digit binary integer.
- Input exactly matches regular expression
^[01]{100}$
.
Output
- Output given integer in decimal format.
- Space characters around the output integer are ignored.
- Any number of
0
s leading the output integer are ignored.
ルール
与えられた100桁の2進数を、10進数に変換せよ。
入力
- 2進数で表現される100桁の整数が与えられる。
- 入力は正規表現
^[01]{100}$
で表現される。
出力
- 入力された整数を10進数で出力せよ。
- 出力された数の前後に含まれる空白文字は無視される。
- 出力された数の先頭に存在する数字の
0
はすべて無視される。