Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdio>
- using namespace std;
- int main(){
- double a, b;
- cin >> a >> b;
- // scanf("%lf%lf", &a, &b);
- cout << a * b / 2 << endl;
- // printf("%g", a * b / 2);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment