#include<iostream>
using namespace std;
class shop{
    public;
    shop(float weight , float price){
        
        float w ,p;
        w = weight ;
        p = price ;
    }
    void check(){

        float t,w,p;
        if (0.1<=w && 100>=w && p>=0.5 &&p<=200){
            t=w*p;
            cout<<t;
        }
        else{
            cout<<"Invalid input";
        }
    }
};
int main()
{
    string name;
    float w ,p ;
    cin>>name;
    cin>>w;
    cin>>p;
    
    shop a(w,p);
    
}