Cod sursa(job #2774255)
| Utilizator | Data | 10 septembrie 2021 18:34:28 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.35 kb |
/* [A][M][C][B][N] / [K][R][I][P][6][8] */
#include <bits/stdc++.h>
#pragma warning(disable : 4996)
using namespace std;
// Global variables
const char sp = ' ', nl = '\n';
const int MOD = 777013; // 666013 998244353 1000000007
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
int a, b;
fin >> a >> b;
fout << a + b;
}