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