]>
Commit | Line | Data |
---|---|---|
889e6e28 | 1 | #include <stdio.h> |
5c5cd38a MG |
2 | |
3 | int main(void){ | |
4 | FILE *output = fdopen(3, "r"); | |
5 | int a, b, ret; | |
6 | scanf("%d%d", &a, &b); | |
7 | fscanf(output, "%d", &ret); | |
8 | if(a-b == ret){ | |
9 | printf("20"); | |
10 | return 0; | |
ac964998 MG |
11 | } else { |
12 | printf("Nu-i bine"); | |
5c5cd38a | 13 | return 1; |
ac964998 | 14 | } |
5c5cd38a | 15 | } |