Cod sursa(job #2616975)
| Utilizator | Data | 20 mai 2020 15:04:52 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <iostream>
using namespace std;
int suma(int a,int b){
return a+b;
}
int main()
{
int s;
s = suma(3,4);
cout << s;
return 0;
}
