I get the reasoning for requiring a precision in most cases. However, as I mentioned in https://github.com/w3c/csswg-drafts/issues/2513#issuecomment-565426050, it seems fine to omit it for numbers. So if B becomes optional, defaulting to 1, it will be possible to do things like ```css round(2.3) /* 2 */ round(up, 2.3) /* 3 */ ``` while `round(2.3em)` will continue being invalid due to the type mismatch between A and B.