13 lines
166 B
C
13 lines
166 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int a = 10, b = 20;
|
|
|
|
printf("a = %d, b= %d\n", a, b);
|
|
printf("a = %d, b = %d\n", b, a);
|
|
printf("%d%d", a, b);
|
|
|
|
return 0;
|
|
}
|