import sys

main() {
	x := 0

	loop {
		for 0..10 {
			x += 1
		}

		assert x == 10

		loop {
			x -= 1

			if x == 0 {
				sys.exit(0)
			}
		}
	}
}