Cod sursa(job #3238451)

Utilizator TudiixGorin Tudor Tudiix Data 25 iulie 2024 16:27:19
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdbool.h>
#include <malloc.h>
#include <math.h>





int main(void) {

    long long int t,n;
    scanf("%lld", &t);
    scanf("%lld", &n);
    printf("%lld", t+n);

    return 0;
}