'''
Online Python Interpreter.
Code, Compile, Run and Debug python program online.
Write your code in this editor and press "Run" button to execute it.
'''
import subprocess
subprocess.call(["i=0; while [ $i -lt 5 ]; do i=`expr $i + 1` echo $i; sleep 1; done"], shell=True)