14 lines
155 B
C
14 lines
155 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int a, b;
|
|
|
|
printf("enter two numbers:");
|
|
scanf("%d%d", &a, &b);
|
|
|
|
printf("a = %d, b = %d\n", a, b);
|
|
|
|
return 0;
|
|
}
|