Compare commits

..

No commits in common. "lesson_16" and "master" have entirely different histories.

1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#include <iostream>
int doubleNumber(int a)
{
return a * 2;
}
int main()
{
int a;
std::cin >> a;
std::cout << doubleNumber(a) << std::endl;
}