Untitled
unknown
plain_text
a year ago
224 B
0
Indexable
Never
#include <iostream> using namespace std; int main() { int N, M; cin >> N >> M; cout << " i have_" << N << "_robocats" << " and " << " i have_" << M << "_robodogs!" << " summary " << (N + M) << " animals "; }