URI Online Judge | 2172
Event
By Nivaldo Carvalho, UNIPE BR Brazil
Timelimit: 2
Problem Description:
Problem Number:2172
Problem Name: Event
Author’s Name:Nivaldo Carvalho, UNIPE BR Brazil
Timelimit: 2
Problem Category: BEGINNER.
Problem Source: https://www.urionlinejudge.com.br/judge/en/problems/view/2172
#include <stdio.h>
int main(){
long long int x, m;
while(1)
{
scanf("%lld%lld", &x, &m);
if(x==0 && m==0)
break;
printf("%lld\n", x*m);
}
return 0;
}
0 comments:
Post a Comment