Blueprint Math Expression: Fractions (like 1/3) are initialized as ints, become zero

If you input a math expression that has a fraction using whole numbers, the math expression uses the Int version of divide. As Int divide currently works, a fraction like 1/3 turns into zero.
You can work around this by writing 1.0 / 3, but every time I put in 1/3 I expect to get 0.33333 out, not 0.