Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- double l, w, a;
- cin >> l >> w >> a;
- double space = l * w - (l * w / 10) - a * a;
- int dancers = (int)(space / 0.7040);
- cout << dancers << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement