hw/main.cpp

11 lines
89 B
C++

#include <stdlib.h>
int main() {
int a = 1;
int b = 2;
int c = a - b;
return 0;
}