Outputting formatted numbers

I have a shortcut that gets the screen brightness. Currently it is returning “0.3056789…” and I’d like it to return “30” so it can then seek “30 percent”.

I did the following:

Get Device details {Current brightness}
Set variable {Bright}
Calculate {Operation x} {Operand 100}
Round Number {right of decimal} {Normal} {0 decimal places}
Text Brightness is {Bright} percent
Speak Text

But it still says “zero point three zero five…”

OK, I figured it out. For posterity.

 Get Device details {Current brightness}
 Format Number {2 decimal places}
 Calculate {Operation x} {Operand 100}
 Text Brightness is {Calculation Result} percent
 Speak Text`