#include using namespace std; int main() { int a,b,c,d,e; cout<<"Please enter 5 values:"<>a>>b>>c>>d>>e; //Input can also be cascaded cout<<"The result is "<<(a - b / c + d * e); //We can also save the result in a variable and print it. return 0; }