/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
struct t {
int y;
};
int main()
{
volatile t a={1};
volatile t b;
b=a;
cout<< a.y << '\n';
cout<< b.y << '\n';
return 0;
}