2024-08-25 20:00:46 -06:00

12 lines
119 B
C++

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