Skip to content

Instantly share code, notes, and snippets.

@nicolekorch
Created February 27, 2026 13:01
Show Gist options
  • Select an option

  • Save nicolekorch/793faf38e71c0be2859233c6917eb32b to your computer and use it in GitHub Desktop.

Select an option

Save nicolekorch/793faf38e71c0be2859233c6917eb32b to your computer and use it in GitHub Desktop.
Практика 2 Домашнє завдання з C++ Робота з функціями та масивами
#include <iostream>
using namespace std;
int main() {
int a, b;
cout << "Enter numbers: ";
cin >> a >> b;
cout << "Sum = " << a + b << endl;
return 0;
}
@nicolekorch
Copy link
Author

main.cpp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment