fork download
  1. # your code goes here
  2. #0JLQsNGB0LjQu9C10L3QutC+INCQ0YDRgtC10Lwg
  3. def prog():
  4.  
  5. A = int(12)
  6.  
  7. B = int(4)
  8.  
  9. Sum = A + B
  10.  
  11. Relation = A/B
  12.  
  13. print(f"A = {A} B = {B}\nA+B = {Sum} A:B = {Relation}")
  14.  
  15.  
  16.  
  17. prog()
  18.  
Success #stdin #stdout 0.11s 14100KB
stdin
Standard input is empty
stdout
A =  12               B = 4
A+B = 16             A:B = 3.0