1#
2# Copyright(C) 2005
3# All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4#
5# Permission from use, copy, modify, and distribute this
6# software and its documentation for EDUCATIONAL purposes
7# and without fee is hereby granted provided that this
8# copyright notice appears in all copies.
9#
10# date : June 1, 2005.
11# author : Salih Yurttas.
12#
13# comp_01.py
14#
15
16
17def f_a(i):
18 a = input("-> a : ")
19 a += i
20 print "a = ", a
21
22def f_b(i):
23 b = input("-> b : ")
24 b += i
25 print "b = ", b
26
27# some computations...
28
29f_a(2)
30
31# some more computations...
32
33f_a(4)
34
35# some more computations...
36
37f_b(4)
38
39# some more computations...
40
41f_b(2)