11044 - Searching for Nessy | UVa
Problem Link : 11044 - Searching for Nessy
Solution :
Develop by Samsus Salehin Sabbir
Solution :
Develop by Samsus Salehin Sabbir
- #include<iostream>
- using namespace std;
- int main() {
- // your code goes here
- int m,n,mul=1,t,i;
- cin >> t;
- for(i=0;i<t;i++)
- {
- cin >> n >> m;
- mul = (n/3)*(m/3);
- cout << mul << endl;
- mul=1;
- }
- return 0;
- }
No comments