Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7013 - Минут секунд -> секунд

Өгөгдсөн минут, секундыг секунд рүү шилжүүл.

Input

Минут, секунд зайгаар тусгаарлагдан Int төрлөөр өгөгдөнө.

Output

Секунд гарна.

Example

Input:
3 4
Output:
184

Нэмсэн:Bataa
Огноо:2011-05-15
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2022-10-11 15:10:35
#include <iostream>

using namespace std;

int main()
{

int too, duu, a, b;

cin >> too >> duu;

a = too * 60;

b = a + duu;


cout << b;

return 0;
}
hul2 huhdude
2022-09-22 13:54:19
#include<iostream>
using namespace std;
int main (){
int a,b,c;
cin>>a>>b;
c=a*60+b;
cout<<c;
return 0;
}
2022-09-22 08:29:09
no momo
2022-09-22 08:29:08
no momo
2022-01-11 03:25:07
yoooy

Last edit: 2022-01-11 03:25:46
2021-11-06 16:04:56
,.


Last edit: 2021-11-06 16:05:39
2021-05-15 17:49:29
#include <iostream>
using namespace std;
int main()
{
int a,b,x;
cin>>a>>x;
b = a * 60 + x % 60;
cout<<b<<endl;
} i am the legend
2021-04-17 11:50:19
#include<stdio.h>
int a,b,c,y,z;
main()
{
scanf("%d%d",&a,&b);
c=a*60;
y=b%60;
z=c+y;
printf("%d",z);
}
2021-01-25 12:13:35
#include<stdio.h>
int a, b, c, d, e;
main()
{
scanf("%d %d",&a,&b);
c=a*60;
d=b%60;
e=c+d;
printf("%d",e);
}
2020-10-28 07:20:04
AASH BIIIJII
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.