Data Types C++ Tutorial

#include   
using namespace std;  
  
int main()  
{  
  int length; 
  int width;  
  
  length = 7; 
  width = 5;  
  
  cout << "The area is ";  
  cout << length * width; 
  
  return 0;  
}
The area is 35"