fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(){
  4. long long Q,W,E;
  5. cin>>Q>>W>>E;
  6. if(Q*W==E){
  7. cout<<"DOBRZE";
  8. }
  9. else {
  10. cout<<"TYLKO SZYBKO";
  11.  
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5320KB
stdin
1 2
2
stdout
DOBRZE