Long


#include <stdafx.h>  
#include <iostream>

using namespace std; 

/* Long numbers are stored in 32 bits. */

int main() 
{    
  long a=10,b=10,c;           /* Declaration of long variables. */
  c=a+b;
  cout<<"Sum= "<<c;
  return 0;  

}

Output:
Sum= 20