Created
February 27, 2026 13:01
-
-
Save nicolekorch/793faf38e71c0be2859233c6917eb32b to your computer and use it in GitHub Desktop.
Практика 2 Домашнє завдання з C++ Робота з функціями та масивами
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main() { | |
| int a, b; | |
| cout << "Enter numbers: "; | |
| cin >> a >> b; | |
| cout << "Sum = " << a + b << endl; | |
| return 0; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
main.cpp