Cod sursa(job #2702470)
Utilizator | Data | 4 februarie 2021 11:05:51 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c-32 | Status | done |
Runda | Lista lui wefgef | Marime | 0.25 kb |
#include <stdio.h>
#define restrictie 2000000000
int main()
{
long long int a,b;
scanf("%lld\n%d", &a, &b);
if(a+b > restrictie ){
return 0;
}
else{
printf("%lld", (a+b));
}
return 0;
}