#include<iostream.h>
int x = 10 ;
void main( )
{
int x = 20;
::x = x + ::x;
cout <<x;
}