UPC/1sem/programming basics/z1/1.cpp
2019-11-18 10:01:42 +07:00

13 lines
No EOL
242 B
C++

// pb_z1_1.cpp
// Горбацевич Андрей
#include <stdio.h>
#include <algorithm>
using namespace std;
int main() {
int a, b;
printf("a b >>>");
scanf("%d %d", &a, &b);
swap(a, b);
printf("a=%d \nb=%d", a, b);
}