题解 | #汽水瓶#
汽水瓶
http://www.nowcoder.com/practice/fe298c55694f4ed39e256170ff2c205f
#!/usr/sbin/python # -*- coding: utf-8 -*- while True: try: input_i = int(input()) if input_i == 0: break result_count = int(input_i/2) print(result_count) except: break