Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
280 B
3
Indexable
Never
#include <iostream>

using namespace std;
int main(){
	int N, M, V;
	cin >> N >> M;
	V = N + M;
	cout << "i have" << "_" << N << "_" << "robocats"<<" "<<"and" <<" " << "_" << M << "_" << "robodogs!"<<endl;
	cout << "Summary-" << "_" << V << "_" << "animals";
	



}