10 lines
98 B
C++
10 lines
98 B
C++
|
#include <cstdlib>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
const int num = 7;
|
||
|
int res = num + 4;
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|