Converts an integer x from Montgomery representation back to standard representation.
int fromMontgomery(int x) { return montgomeryReduce(x); }