You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution : https://youtu.be/55kgGHzTTzo
#include <iostream> using namespace std; int solveMeFirst(int a, int b) { return a + b; } int main() { int num1, num2; int sum; cin>>num1>>num2; sum = solveMeFirst(num1,num2); cout<<sum; return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Solve Me First
You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution : https://youtu.be/55kgGHzTTzo