Guest User

B

a guest
Jan 13th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <algorithm>
  3. #define _ ios::sync_with_stdio(0);
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {_
  9.     int n, a, b;
  10.  
  11.     cin>>n>>a>>b;
  12.     if(n>=a+b)
  13.         cout<<"Farei hoje!\n";
  14.     else
  15.         cout<<"Deixa para amanha!\n";
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment