public class Test
{
	public static bool Run()
	{
		int sum = 0;
		foreach (int c in "foo")
			sum += 1 + c;
		return sum == 3 + 'f' + 'o' + 'o';
	}
}