Advertisement
MichalWalczak

Zad 5

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