string input; // use C++ style string with getline
int main(){
getline (cin,input);
for (int i=0;i<input.length();i++){ // input.length() gets the length of the string
// convert every character of input to lowercase ( I think there are other methods to do this)
input[i]=tolower(input[i]);
}
cout<<"Your input is:"<<input<<endl;
}