blob: 442793e599b257187fd3f48b3ce4a4b8376215a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import sys
import math
w = int(input())
for i in range(w):
wall = input()
d = int(input())
for i in range(d):
door = input()
# Write an answer using print
# To debug: print("Debug messages...", file=sys.stderr, flush=True)
print("0 C4 needed to go through 0 walls")
|