laab6/1.c

12 lines
223 B
C
Raw Normal View History

2024-12-16 09:21:35 +04:00
#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;
}