fork download
  1. #include <iostream>
  2. #include <typeinfo>
  3. using namespace std;
  4.  
  5. int main() {
  6. double price, tax;
  7. cin >> price >> tax;
  8. cout << typeid(price).name() << '\n';
  9. cout << price + price*(tax / 100);
  10. return 0;
  11. }
Success #stdin #stdout 0s 3416KB
stdin
2 2
stdout
d
2.04