#include <iostream>
int stonetolb(int);
int kilograms(int);
int main()
{
using namespace std;
int stone;
cout << "Hello, it's translator of stone in kg and pounds!";
cout << "Enter the weight in stone: ";
cin >> stone;
int pounds = stonetolb(stone);
cout << stone << " stone = ";
cout << pounds << " pounds" << endl;
int kg = <b>kilograms</b>(stone);
cout << stone << " stone = ";
cout << kg << " kg" << endl;
return 0;
}
int stonetolb(int sts)
{
return 14 * sts;
}
int <b>kilograms</b>(int klg)
{
return 6.34 * klg;
}