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