Untitled
huser_0563559
c_cpp
10/18/2023 5:10 PM
368 B
13
Indexable
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int C, D;
cin >> C >> D;
cout << "У меня столько robocats:" << C << ' ' << "и столько robodogs:" << D << ',' << ' ' << "а всего:" << C + D;
}Editor is loading...