fork download
  1. // your code goes here
  2.  
  3. var x = 10;
  4. var y = 25;
  5. var z = x + y;
  6.  
  7. print("x + y = " + z);
Success #stdin #stdout 0s 105856KB
stdin
Standard input is empty
stdout
x + y = 35