diff --git a/A/cpp/code.cpp b/A/cpp/code.cpp new file mode 100644 index 0000000..e215c0a --- /dev/null +++ b/A/cpp/code.cpp @@ -0,0 +1,13 @@ +#include + +using namespace std; + +int GetSum(int a, int b) { + // Здесь реализация вашего решения +} + +int main() { + int a, b; + cin >> a >> b; + cout << GetSum(a, b); +} \ No newline at end of file diff --git a/A/java/Solution.java b/A/java/Solution.java new file mode 100644 index 0000000..94c87d4 --- /dev/null +++ b/A/java/Solution.java @@ -0,0 +1,16 @@ +import java.util.Scanner; + +public class Solution { + + private static int getSum(int a, int b) { + // Ваше решение + } + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + int a = scanner.nextInt(); + int b = scanner.nextInt(); + System.out.println(getSum(a, b)); + scanner.close(); + } +} \ No newline at end of file diff --git a/A/js/code.js b/A/js/code.js new file mode 100644 index 0000000..84c2324 --- /dev/null +++ b/A/js/code.js @@ -0,0 +1,34 @@ +const _readline = require('readline'); + +const _reader = _readline.createInterface({ + input: process.stdin +}); + +const _inputLines = []; +let _curLine = 0; + +// Установим callback на считывание строки - так мы получим +// все строки из ввода в массиве _inputLines. +_reader.on('line', line => { + _inputLines.push(line); +}); + +process.stdin.on('end', solve); + + +// Функция парсит число из очередной строки массива _inputLines +// и сдвигает указатель на единицу вперёд. +function readNumber() { + return Number(_inputLines[_curLine++]); +} + +function getSum(a, b) { + // Ваше решение +} + +function solve() { + const a = readNumber(); + const b = readNumber(); + + console.log(getSum(a, b)); +} \ No newline at end of file diff --git a/A/python/code.py b/A/python/code.py new file mode 100644 index 0000000..3b9031f --- /dev/null +++ b/A/python/code.py @@ -0,0 +1,13 @@ +from typing import Tuple + +def get_sum(a: int, b: int) -> int: + # Здесь реализация вашего решения + pass + +def read_input() -> Tuple[int, int]: + a = int(input()) + b = int(input()) + return a, b + +a, b = read_input() +print(get_sum(a, b)) \ No newline at end of file