Exercise 7 · Chapter: Input & Type ConversionRequired+50 XP
Rectangle from Input
Read the width and height of a rectangle (one per line) and print its area.
Print the result in the format: Area: {area}.
Example: If the user types 4 and then 6, your program should print Area: 24.
rust
fn main() {
}
Output
Run your code to see the output here.