fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. cin >> n;
  7. int s=0 , v=0;
  8. if (s > v){
  9. cout << "S" << endl;
  10. }
  11. else if (s < v){
  12. cout << "V" << endl;
  13. }
  14. else if (s==v){
  15. cout << "DRAW" << endl;
  16. }
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.01s 5312KB
stdin
4
10 2
12 0
3 15
6 11
stdout
DRAW