tuannn

 avatar
unknown
c_cpp
4 years ago
200 B
9
Indexable
#include <iostream>
#include <iomanip>
#include <cmath>
#include <stdio.h>
using namespace std;
//Sum of 2 input variables
int main(){
    int a, b;
    cin >> a >> b;
    cout << a+b;
    return 0;
}
Editor is loading...