#include
using namespace std; int main() { int x = 10; x += 5; cout << x; return 0; }
15