let arr = [5, 10, 15, 20, 25];
for element in arr.iter() {
    println!("عنصر: {}", element);
}