cpp-demo-project/main.cpp

11 lines
189 B
C++
Raw Normal View History

2024-01-18 11:10:10 +01:00
#include <iostream> // for std::cout
2024-01-22 10:26:02 +01:00
#include "io.h"
2024-01-18 11:10:10 +01:00
// Definition of function main()
int main()
{
2024-01-22 10:26:02 +01:00
int a{readNumber()};
int b{readNumber()};
writeAnswer(a + b);
2024-01-18 11:10:10 +01:00
return 0;
}