#include <iostream> #include<vector> using namespace std; int main() { int a, b, c, d, e; while (cin >> a >> b >> c >> d >> e) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") if(a==0 || b==0 || d == 0 || e == 0){ cout << 0 << endl; return 0;...