// editor1
#include<stdio.h>
int main()
{
int a,b,t;
a=10;
b=90;
printf("\n%d\n%d",a,b);
t=10;
b=a;
a=t;
printf("%d,%d",a);
return 0;
}