小白成长记之PTA乙级题 1086
PTA乙级题 1086. 就不告诉你 (15 分)
特判一下前导零就好了
#include <iostream>
using namespace std;
int main()
{
int a, b;
scanf("%d%d", &a, &b);
while (a % 10 == 0)
a /= 10;
while (b % 10 == 0)
b /= 10;
int ans = a * b;
if (ans == 0)
printf("0");
while (ans)
{
printf("%d", ans % 10);
ans /= 10;
}
}