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
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
2020-09-15 06:58:01
#include <iostream>

using namespace std;

int main(){
int a,b,c,d,e;
cin >> a >> b;
c = a * 60;
d = b % 60;
e = c + d;
cout << e << endl;

}
2020-01-30 15:00:03
#include <bits/stdc++.h>
using namespace std;
main(){
int a,b,c,y,z;
scanf("%d%d",&a,&b);
c=a*60;
y=b%60;
z=c+y;
printf("%d",z);
return 0;
}

2020-01-23 05:13:45
#include <cstdio>
main(){
int a,b,c,y,z;
scanf("%d%d",&a,&b);
c=a*60;
y=b%60;
z=c+y;
printf("%d",z);
}
2019-11-12 08:34:11
no
2019-11-08 12:31:04
#include <cstdio>
main(){
int a,b,c,y,z;
scanf("%d%d",&a,&b);
c=a*60;
y=b%60;
z=c+y;
printf("%d",z);
}
SUPER
2019-10-11 17:56:35
hi
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.