#include using namespace Upp; CONSOLE_APP_MAIN { SeedRandom(); double x = 0; for(int i = 0; i < 10000000; i++) { x += Randomf(); // DDUMP(Randomf()); } DDUMP(x); }