Toggle navigation
YouTube
Facebook
Telegram
english
english
українська
Algotester 4.3
Build 501
2024-12-30
Log In
Contact Us
College
Sponsors
Donate
Sources
C++ 14
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; if (n * m % 2 == 0) cout << "Dragon"; else cout << "Imp"; return 0; }