RosettaCodeData/Task/A+B/JavaScript/a+b-4.js

4 lines
122 B
JavaScript
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
var a = WScript.StdIn.ReadLine();
var b = WScript.StdIn.ReadLine();
WSH.echo(a, " + " , b , " = " , Number(a)+Number(b));