提交时间:2026-01-28 20:27:14

运行 ID: 83611

#include <bits/stdc++.h> using namespace std; int main( ) { int a,b; cin>>a; cin>>b; if(1.0*a/b>=1.2) cout<<"青龙"; else if(1.0*a/b<0.8) cout<<"玄武"; else cout<<"白虎"; return 0; }