Exerpad

Temperature Converter

Convert 25 degrees Celsius to Fahrenheit using the formula:

F = C * 9 / 5 + 32

Your output should be:

text
77

Hint: Use integer math (no decimals needed).

rust
fn main() {
}