Untitled

Anonymous
plain_text
11/19/2022 6:03 PM
172 B
8
Indexable
#include <iostream>
using namespace std;
int main()
{
	int a, b, c;
	cin >> a >> b >> c;
	cout << (a + c) + (b + c)  ;
}
Editor is loading...