Exercise 5 · Chapter: Input & Type ConversionRequired+50 XP
Age Next Year
Read the user's age and print how old they will be next year.
Print the result in the format: Next year you will be {age}.
Example: If the user types 10, your program should print Next year you will be 11.
rust
fn main() {
}
Output
Run your code to see the output here.