ravesli/Chapter_1/io.cpp

14 lines
140 B
C++
Raw Permalink Normal View History

2021-07-20 12:38:55 +00:00
#include <iostream>
int readNumber()
{
int a = 0;
std::cin >> a;
return a;
}
void writeAnswer(int a)
{
std::cout << a << std::endl;
}