#include <iostream>
using namespace std;
int main() {
int profit;
cout << "Enter the amount of profit:\n";
cin >> profit;
double tax = (double) profit * 0.17;
cout << "The tax owing is equal to " << tax;
return 0;
}
I2luY2x1ZGUgPGlvc3RyZWFtPgp1c2luZyBuYW1lc3BhY2Ugc3RkOwoKaW50IG1haW4oKSB7CglpbnQgcHJvZml0OwoJY291dCA8PCAiRW50ZXIgdGhlIGFtb3VudCBvZiBwcm9maXQ6XG4iOwoJY2luID4+IHByb2ZpdDsKCWRvdWJsZSB0YXggPSAoZG91YmxlKSBwcm9maXQgKiAwLjE3OwoJY291dCA8PCAiVGhlIHRheCBvd2luZyBpcyBlcXVhbCB0byAiIDw8IHRheDsgCglyZXR1cm4gMDsKfQ==