fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. unsigned long long f(unsigned long long &a, unsigned long long &b, unsigned long long &tmp)
  6. {
  7. tmp = a;
  8. a = b;
  9. b = tmp;
  10. }
  11.  
  12. int main()
  13. {
  14. unsigned long long a,b,tmp;
  15.  
  16. cout << "Введите числа: " << endl;
  17. cin >> a >> b;
  18. f(a,b,tmp);
  19. cout << a << b << endl;
  20.  
  21. return 0;
  22. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Введите числа: 
0140729119618976