SOLUTION OF UVA 11044 UVA SOLUTIONS // Question of uva 11044 - Searching for Nessy // Mahmud_Jamil #include<stdio.h> int main() { int t,n,m; scanf("%d",&t); while(t--) { scanf("%d %d",&n,&m); printf("%d\n",(n/3)*(m/3)); } } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook