Advertisement
AlexzanderF

5

Jun 13th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int m;
  8.     int n;
  9.     int sum;
  10.    
  11.     cin >> m;
  12.     cin >> n;
  13.    
  14.     if(m > n){
  15.         m = m + 5;
  16.         cout << "m = " << m << endl;
  17.     } else
  18.     {
  19.         n = n / 4;
  20.     }
  21.     sum = m + n;
  22.     if (sum % 2 == 0)
  23.     {
  24.         cout << "Sum is even.";
  25.     }else
  26.     {
  27.          cout << "Sum is odd.";
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement