import std.stdio;import std.conv; int main(){ string s=readln(); int a=toInt(s); s=readln(); int b=toInt(s); writef("%d",a+b); return 0;}
2 3
prog.d(7): Error: undefined identifier toInt prog.d(7): Error: function expected before (), not toInt of type int prog.d(9): Error: undefined identifier toInt prog.d(9): Error: function expected before (), not toInt of type int
Standard output is empty
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!