gfcc #2

Open
Adel wants to merge 2 commits from branch2 into main
Showing only changes of commit daef062d30 - Show all commits

11
1.c
View File

@ -0,0 +1,11 @@
#include <iostream>
int sum(int a, int b) {
return a + b;
}
int main() {
int x, y;
std::cout << "Enter two numbers: ";
std::cin >> x >> y;
std::cout << "Sum: " << sum(x, y) << std::endl;
return 0;
}