This commit is contained in:
ZennDev1337 2024-01-22 12:20:24 +01:00
parent b018a44f10
commit cda6ed407a
3 changed files with 0 additions and 0 deletions

12
src/main.cpp Normal file
View file

@ -0,0 +1,12 @@
#include <iostream> // for std::cout
#include "io.h"
// Definition of function main()
int main()
{
int a{readNumber()};
int b{readNumber()};
writeAnswer(a + b);
return 0;
}