XIComp SC H Y 467
XIComp SC H Y 467
37 Find Output: 5
a,b,c=1,1,2
d=a+b
e=1.0
f=1.0
g=2.0
h=e+f
print(c==d)
print(c is d)
print(g==h)
print(g is h)
print(d,h)