Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Biggest Number

Given three numbers from input (one per line), figure out which one is the biggest and print it!

Print just the biggest number.

Hint: You can use && to check multiple conditions at once, or you can nest if statements inside each other.

rust
fn main() {
}