fork download
  1. A=10
  2. B=5
  3.  
  4. if A==B:
  5. print("A si B sunt egale")
  6.  
  7. if A!=B:
  8. print("A si B nu sunt egale")
  9.  
  10.  
  11.  
  12.  
Success #stdin #stdout 0.02s 9108KB
stdin
Standard input is empty
stdout
A si B nu sunt egale