Advertisement
ZhilinskiyG

Task 1_06

Feb 11th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cin >> a;
  8.     int b;
  9.     cin >> b;
  10.     int c;
  11.     cin >> c;
  12.     if (a > 50 || b > 50 || c > 50) {
  13.         cout << "worrying" << endl;
  14.     }else {
  15.         cout << "No problem" << endl;
  16.     }
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement