10 lines
224 B
Rust
10 lines
224 B
Rust
fn main() {
|
|
let mut current = 0;
|
|
while (current * current) % 1_000_000 != 269_696 {
|
|
current += 1;
|
|
}
|
|
println!(
|
|
"The smallest number whose square ends in 269696 is {}",
|
|
current
|
|
);
|
|
}
|