Cod sursa(job #2702463)
Utilizator | Data | 4 februarie 2021 10:53:30 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c-64 | Status | done |
Runda | Arhiva de probleme | 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;
}