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
2023-03-03 09:57:12
ez ymaa
2022-10-30 16:36:06
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b,c,d;
cin>>a>>b;
c=a*60;
d=c+b;
cout<<d;
}
ene bn
2022-10-13 10:16:26
#include <iostream>

using namespace std;

int main()
{
int a,b,c,d;
cin>>a>>b;
c=a*60;
d=c+b;
cout<<d;
}
huul suguudaa
2022-10-13 04:32:05
#include <iostream>
using namespace std;
int main()
{
int a,b,x;
cin>>a>>x;
b = a * 60 + x % 60;
cout<<b<<endl;
}
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
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.