Cod sursa(job #3238472)
Utilizator | Data | 25 iulie 2024 18:36:28 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.35 kb |
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdbool.h>
#include <malloc.h>
#include <math.h>
#include<stdio.h>
int main(void) {
long long int t, n;
scanf("%lld", &t);
scanf("%lld", &n);
FILE *fptr;
fptr = fopen("output.txt", "w");
fprintf(fptr, "%lld\n", t + n);
fclose(fptr);
return 0;
}