Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Created September 10, 2023 02:53
Show Gist options
  • Select an option

  • Save codeperfectplus/adc5aa44a0381642450dafb259081bf8 to your computer and use it in GitHub Desktop.

Select an option

Save codeperfectplus/adc5aa44a0381642450dafb259081bf8 to your computer and use it in GitHub Desktop.
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int solveMeFirst(int a, int b) {
// Hint: Type return a+b; below:
return a + b;
}
int main() {
int num1, num2;
int sum;
cin>>num1>>num2;
sum = solveMeFirst(num1,num2);
cout<<sum;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment