Problem1377--重组数字

1377: 重组数字

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 4  Solved: 2
[Submit] [Status] [Web Board] [Creator:]

Description

将a、b中的两个正整数合并形成一个新的整数放在c中。合并的方式是:将a中十位和个位数依次放在变量c的千位和十位上,b中的十位和个位数依次放在变量c的个位和百位上。

#include <stdio.h>

void fun(int a, int b, long *c)
{
 
}
main()
{
    int  a,b;
    long  c;
    scanf("%d%d", &a, &b);
    fun(a, b, &c);
    printf("%ld\n", c)

Sample Input

45 12

Sample Output

4251