#!/usr/bin/python3 line = 1 while True: try: entry = input("") except: break print(str(line) + ":", entry) line += 1