f5/main.cpp

11 lines
222 B
C++
Raw Normal View History

2024-11-28 15:12:08 +04:00
#include <iostream>
2024-11-29 09:02:15 +04:00
int sum(int a, int b) {
return a + b;
}
2024-11-28 15:12:08 +04:00
int main() {
2024-11-29 09:02:15 +04:00
int x, y;
std::cout << "Enter two numbers: ";
std::cin >> x >> y;
std::cout << "Sum: " << sum(x, y) << std::endl;
2024-11-28 15:12:08 +04:00
return 0;
2024-11-29 09:02:15 +04:00
}