	  		Spoken Tutorial
	  Spoken Tutorial is brought to you by EduPyramids
	        https://spoken-tutorial.org 
	  	
           Rust Programming Language- Path Struct
           
Assignment:

Write a Rust program that:

1. Asks the user to enter a file path (e.g., /home/user/docs/report.pdf)
2. Prints the following information using methods from std::path::Path module
	Full path
	File name (last component)
	Parent directory
	File extension

