Advertisement
vlatkovski

Pufi i Stojce

Aug 31st, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. //2 ez
  2. #include <iostream>
  3.  
  4. int main() {
  5.     int z, c, s;
  6.     std::cin >> z >> c >>s;
  7.  
  8.     int blah = z + c + s;
  9.     int bleh = blah;
  10.  
  11.     while (bleh % 3 != 0) {
  12.         bleh++;
  13.     }
  14.  
  15.     std::cout << bleh - blah;
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement