diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c600428c..a2b47be4 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -softservedata +@softservedata \ No newline at end of file diff --git a/myprog.js b/myprog.js deleted file mode 100644 index bcf84960..00000000 --- a/myprog.js +++ /dev/null @@ -1,14 +0,0 @@ -function sumNumbers(a, b) { - return a + b; -} - -console.log("Вітаю! Ця програма обчислює суму двох чисел."); - -const number1 = parseFloat(prompt("Введіть перше число:")); -const number2 = parseFloat(prompt("Введіть друге число:")); - - -const result = sumNumbers(number1, number2); - -console.log(`Сума чисел ${number1} і ${number2} дорівнює ${result}.`); -alert(`Сума чисел ${number1} і ${number2} дорівнює ${result}.`);