Advertisement
a53

Canada

a53
Feb 1st, 2022
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a,b;
  6. cin>>a>>b;
  7. if(a+b<=100)
  8. cout<<0;
  9. else
  10. cout<<a-(100-b);
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement