eolymp
bolt
Try our new interface for solving problems
Məsələlər

Абетка

dərc olunub 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.

dərc olunub 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; }