#include using namespace std; int main() { double base,height,area; cout<<"enter base:"; cin>>base; cout<<"enter height:"; cin>>height; area=base*height; return 0; }