Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdint>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. uint64_t width = 8864;
  8. uint64_t height = 5288;
  9. uint64_t NImg = 50;
  10. uint64_t TotalBytes;
  11.  
  12. TotalBytes = (width * height * NImg + 2 ) * 2;
  13.  
  14. cout<<TotalBytes<<endl;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement