Ответ:
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
while(n--)
cout << "Here we go" << endl;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
while(n--)
cout << "Here we go" << endl;
}