Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include "units.h"
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. cout << "1MiB 440KiB = " << 1_mebi * 1_byte + 440_kibi * 1_byte << " Bytes" << endl;
  8. cout << "2016-02-08 = " << 2016_year + 2_month + 8_day << " Days" << endl;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement