mogens_og_karen/src/excercises/buckets.cc
2024-02-06 18:06:16 +01:00

19 lines
193 B
C++

# include <iostream>
using namespace std;
int main() {
int a = 1;
int b = 2;
int c = a;
a = b;
b = c;
cout << "A: " << a;
cout << "B: " << b;
return 0;
}