summaryrefslogtreecommitdiff
path: root/PlaygroundCpp/Sources/Playground.cpp
blob: 37b59f96ac088cf1f8a4f41a8220a99e6808d12e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

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;
}