Advertisement
Brankicaj

ugao

Mar 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int stepeni, minuti;
  5. cin >> stepeni >> minuti;
  6. if (stepeni == 90 && minuti == 0)
  7. cout << stepeni << " " << "prav" << endl;
  8. else if (stepeni >= 90)
  9. cout << stepeni << " " << "tup" << endl;
  10. else
  11. cout << stepeni << " " << "ostar" << endl;
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement