Advertisement
ateyevtm

Untitled

Dec 17th, 2023
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a,b,c;
  8. cin >> a >> b >> c;
  9. if(a + b > c){
  10. cout << c;
  11. }
  12. else{
  13. cout << a + b;
  14. }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement