12 lines
119 B
C++
Raw Normal View History

2024-08-25 20:00:46 -06:00
#include <iostream>
int main()
{
using namespace std;
int x = 8+2*3;
cout << x << endl;
return 0;
}