#!/usr/bin/python3 # -*- coding: utf-8 -*- user_input: int = int(input()) while 0 < user_input: print(user_input) user_input = int(input())