fork download
  1. A = int(input())
  2. B = int(input())
  3.  
  4. print(f"A = {A} B = {B} \nA+B = {A+B} A/B = {A/B}")
Success #stdin #stdout 0.1s 14192KB
stdin
2
3
stdout
A = 2  B = 3 
A+B = 5  A/B = 0.6666666666666666