<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/python
import time

while 1:
    print("Start : %s" % time.ctime())
    print("second line")
    time.sleep(1)
</pre></body></html>