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

def func_c():
	print "Function C"
	i = 0
	while (i &lt; 3000000):
		i = i + 1
		j = i + 1

def func_b():
	print "Function B"
	i = 0
	while (i &lt; 2000000):
		i = i + 1
		j = i + 1
	func_c()

def func_a():
	print "Function A"
	i = 0
	while (i &lt; 1000000):
		i = i + 1
		j = i + 1
	func_b()

func_a()
</pre></body></html>