Untitled

Anonymous
c_cpp
10/01/2023 10:06 AM
168 B
11
Indexable
#include <iostream>
#include <string>
using namespace std;


int main() 
{
int a, b;
cin >> a >> b;
cout << a + b;
}
Editor is loading...