Problem H: 二进制转换为10进制

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:7301 Solved:6049

Description

编程实现将二进制转换为十进制.

Input

输入为一行二进制数.

Output

输出该二进制对应的十进制.如果该数不是由0,1组成的数,输出"error"

输出格式  "%d"     或  "error"

Sample Input Copy

11

Sample Output Copy

3