#include <iostream>
#include <string>
using namespace std;
//Write a function that changes all characters in a string todashes
string to_dash(string s){
for(int i = 0; i < s.length(); i++){
}
return s;
}
int main(){
string s;
cin >> s;
s = to_dash(s);
cout << s << endl;
}
Expert Answer
An answer will be send to you shortly. . . . .