Skip to content

Commit

Permalink
Solve Brazil World Cup in c
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Aug 23, 2024
1 parent 1244866 commit 9c96e5d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions solutions/beecrowd/1564/1564.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <stdint.h>
#include <stdio.h>

int main() {
int16_t people;

while (scanf("%d", &people) != EOF) {
if (people) {
puts("vai ter duas!");
} else {
puts("vai ter copa!");
}
}

return 0;
}

0 comments on commit 9c96e5d

Please sign in to comment.