mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1907.cpp
This commit is contained in:
parent
9116f9ae0d
commit
5fa00bec61
16
QUSTOJ/1907.cpp
Normal file
16
QUSTOJ/1907.cpp
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int t;
|
||||||
|
cin>>t;
|
||||||
|
while(t--)
|
||||||
|
{
|
||||||
|
int a,b,c,d;
|
||||||
|
cin>>a>>b>>c>>d;
|
||||||
|
cout<<a*b/2<<" "<<c*d<<endl;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user