fork download
  1. x=9;
  2. y=16;
  3. print(x);
  4. print("+");
  5. print(y);
  6. print("=");
  7. print(x+y);
Success #stdin #stdout 0.01s 6968KB
stdin
Standard input is empty
stdout
9
+
16
=
25