From 2d9b3e3e4cd41dc80e4759b07fd18b89477be2cb Mon Sep 17 00:00:00 2001 From: Haidong Ji Date: Mon, 6 Aug 2018 18:19:38 -0500 Subject: Initial commit. --- PlaygroundCpp/Sources/Playground.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 PlaygroundCpp/Sources/Playground.cpp (limited to 'PlaygroundCpp/Sources') diff --git a/PlaygroundCpp/Sources/Playground.cpp b/PlaygroundCpp/Sources/Playground.cpp new file mode 100644 index 0000000..37b59f9 --- /dev/null +++ b/PlaygroundCpp/Sources/Playground.cpp @@ -0,0 +1,13 @@ +#include + +int add(int a, int b) { + return a + b; +} +int main() { + int a = 0; + int b = 0; + std::cin >> a; + std::cin >> b; + std::cout << add(a, b); + return 0; +} -- cgit v1.2.3