Run ID:5469
提交时间:2024-11-16 14:01:17
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c; if(a%4==0){ d=d+1; } else if(b%4==0){ d=d+1; } else{ if(c%4==0){ d=d+1; } else{ } } return 0; }