Josif_tepe

Untitled

Aug 11th, 2025
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.    
  5.     int broj;
  6.    
  7.     while(scanf("%d", &broj)) {
  8.         if(broj <= 0) {
  9.             break;
  10.         }
  11.     }
  12.    
  13.    
  14.     return 0;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment