#include <iostream>
using namespace std;

int main(){
	double weightinpound ,weightingrams;
	
	cout<<"Enter weight in pounds: ";
	cin>>weightinpound;
	
	weightingrams=weightinpound*453.592;
	
	cout<<"The weight in grams is: "<<weightingrams<<endl;
	
return 0;	
}
