Odpowiedź :
Odpowiedź:
#include <iostream>
int main() {
int a, b, c;
std::cin >> a >> b >> c;
std::cout << "a " << a << std::endl
<< "b " << b << std::endl
<< "c " << c;
return 0;
}
Wyjaśnienie:
Odpowiedź:
#include <iostream>
int main() {
int a, b, c;
std::cin >> a >> b >> c;
std::cout << "a " << a << std::endl
<< "b " << b << std::endl
<< "c " << c;
return 0;
}
Wyjaśnienie: