	  		Spoken Tutorial
	  Spoken Tutorial is brought to you by EduPyramids
	        https://spoken-tutorial.org 
	  	
           Rust Programming Language- Iterators and Closures

Assignment:
1. Write a Rust program that takes a vector of integers:

	let numbers = vec![10, 15, 20, 25, 30, 35, 40];

2.Using iterators, perform the following steps:

	(a)Filter out the numbers that are divisible by 10
	(b)Collect the result into a new vector
	(c)Finally, print the resulting vector


