Answer:
theme colors
Explanation:
As said, a group of colors that are used to format text and objects in a document. When you open the Color menu, these colors determine what you see.
You can press control and x at the same time, the delete button, or backspace
Answer:
#include <iostream>
using namespace std;
/* Your code goes here */
int main() {
int input1, input2;
int result;
cin >> input1;
cin >> input2;
result = ComputeNum(input1, input2);
cout << result << endl;
return 0;
Explanation: