Lab 2

Writing a program using simple math operations . i had to use python command line because python shell was nowhere to be found.

x=4
y=5
x+y
9
x-y
-1
x*y
20
x/y
0.8
x>y
False
x<y
True

 

Untitled