Ekspresi Python

# Relational Expressions
a = 21
b = 13
c = 40
d = 37
  
p = (a - b) <= (c + d)
print(p)
prithwish parial