Documentation
# Easy Input
In the rust we have to right the big number of code for taking input. The purpose of this code is to make it easy to take input.

## Path
extern crate easy_input;  
use crate::easy_input::input::*;

## Example Code
extern  crate easy_input;
<br />use  crate::easy_input::input::*;
<br />fn main(){
<br />println!("enter the number");
<br />let  mut a=inputinti32();
<br />println!("enter the decimal number");
<br />let  mut b=inputfloatf32();
<br />println!("enter the string");
<br />let  mut c=inputstring();
<br />println!("number={}",a );
<br />println!("decimal number={}",b );
<br />println!("String={}",c );
<br />}