12 lines
119 B
C++
12 lines
119 B
C++
|
|
#include <iostream>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
int x = 8+2*3;
|
||
|
|
|
||
|
|
cout << x << endl;
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|