leetcode/example.cpp

13 lines
246 B
C++
Raw Permalink Normal View History

2024-05-24 22:03:54 +02:00
#include<stdcpp.h>
using namespace std;
int plus(int a, int b){
return a+b;
}
int main(){
int first_add_number = 5;
int second_add_number = 10;
int result = plus(first_add_number, second_add_number);
cout<< result <<endl;
return 0;
}