deko

Anonymous
c_cpp
10/01/2023 1:14 PM
200 B
36
Indexable
#include <iostream>
#include <string>
using namespace std;

int main() {
	int a;
	int b;
	cin >> a >> b;
	cout << a + b;
	return 0;
	

}
Editor is loading...