Result [link]

WA

Code [DL]

using System.Console;
public class Test
{
	public static Main() : void
	{
		mutable f = ReadLine();
		mutable x = 0;
		mutable y = 1;
		for(mutable i = 99; i >= 0; i--){
			if(f[i] == '1'){
				x = x+y;
			}
			else{
				x = x;
			}
			y *= 2;
		}
		WriteLine(x);
	}
}

stdin

1011101110000101000110100111100001111010111110000001110000011001111011111111110000010000111111100010

stdout

Standard output is empty

stderr

strace