eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Виведення тексту 2

опубліковано 24.04.21, 21:54:36

it asks you to print a word (w) 4 times. You have to have (-) in the beginning and separate it with a space.

опубліковано 06.04.24, 19:30:28

include <iostream>

using namespace std; int main() { string a; cin>>a; cout<<"-"<<" "<<a<<endl; cout<<"-"<<" "<<a<<endl; cout<<"-"<<" "<<a<<endl; cout<<"-"<<" "<<a<<endl;

return 0; }