xxxxxxxxxx
import std.stdio, std.string, std.algorithm, std.conv;
auto proc(T)(T[] stack, string op) pure
{
auto pops = stack[$ - 2 .. $];
stack.length -= 2;
switch (op) {
case "+":
stack ~= pops[0] + pops[1];
break;
case "-":
stack ~= pops[0] - pops[1];
break;
case "*":
stack ~= pops[0] * pops[1];
break;
case "/":
stack ~= pops[0] / pops[1];
break;
default:
assert(0, op);
}
return stack;
}
calc(real[] stack, string op) pure
{
return op.isNumeric ? stack ~= op.to!real : stack.proc!real(op);
}
void main(string[] args)
{
enum eA = cast(real[]) [];
readln.split.fold!calc(eA).writeln;
}