#11349: 哪裡有錯


TzuchunChen (陳子濬)

學校 : 國立嘉義高級中學
編號 : 59216
來源 : [49.215.236.123]
最後登入時間 :
2019-05-06 08:46:33
d039. 11044 - Searching for Nessy -- UVa11044 | From: [27.105.24.181] | 發表日期 : 2016-09-11 11:06

#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

using namespace std;
int main(int argc, char** argv) {
 
 int n, m;
 
 while(cin >> n >> m)
 {
  cout << (n/3)*(m/3) << endl; 
 }
 return 0;
}

 
ZeroJudge Forum