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_00.py
14#
15
16
17# some computations...
18
19a = input("-> a : ")
20a += 2
21print "a = ", a
22
23# some more computations...
24
25a = input("-> a : ")
26a += 4
27print "a = ", a
28
29# some more computations...
30
31b = input("-> a : ")
32b += 4
33print "b = ", b
34
35# some more computations...
36
37b = input("-> a : ")
38b += 2
39print "b = ", b