Advertisement
rahat62

Toph-Books For War Victims

Jan 31st, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     long long int input;
  5.     int result;
  6.  
  7.     scanf("%lld",&input);
  8.  
  9.     if(input % 3 == 0)
  10.     {
  11.         result = input/3;
  12.     }
  13.     else
  14.         result = (input/3)+1;
  15.  
  16.     printf("%d\n",result);
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement