14 lines
148 B
C++
14 lines
148 B
C++
#include <stdlib.h>
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
# Это мейн
|
|
int main() {
|
|
int a = 1;
|
|
int b = 2;
|
|
int c = a + b;
|
|
return 0;
|
|
}
|
|
|