diff --git a/2.py b/2.py new file mode 100644 index 0000000..73c5e17 --- /dev/null +++ b/2.py @@ -0,0 +1,5 @@ +a=32 +b=23 +c=a=b +print c +print a diff --git a/3.py b/3.py new file mode 100644 index 0000000..5b6ac5a --- /dev/null +++ b/3.py @@ -0,0 +1,7 @@ +a=5 +b=5 +c=a+b +d=a-b +e=a-b +print c +print d