Cod sursa(job #2702466)

Utilizator florinliviu09Florin Liviu Magadan florinliviu09 Data 4 februarie 2021 10:57:28
Problema A+B Scor 0
Compilator c-32 Status done
Runda Lista lui wefgef Marime 0.23 kb
#include <stdio.h>
#define  restrictie  2000000000

int main()
{
    int a,b;
    scanf("%d\n%d", &a, &b);

    if(a+b > restrictie ){
        return 0;
    }
    else{
         printf("%d", (a+b));
    }
    return 0;
}