Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- int a, b;
- scanf("%d%d", &a, &b);
- int zbir = a + b;
- if(zbir < 5) {
- printf("POMAL OD 5\n");
- }
- if(zbir == 5) {
- printf("EDNAKOV NA 5\n");
- }
- if(zbir > 5) {
- printf("POGOLEM OD 5\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement