forked from vedantpople4/problem_solving_cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path41A.cpp
More file actions
33 lines (27 loc) · 1.1 KB
/
41A.cpp
File metadata and controls
33 lines (27 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc. However, it's easy to make a mistake during the «translation». Vasya translated word s from Berlandish into Birlandish as t. Help him: find out if he translated the word correctly.
Input
The first line contains word s, the second line contains word t. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
Output
If the word t is a word s, written reversely, print YES, otherwise print NO.
#include<iostream>
#include<string>
using namespace std;
int main()
{
int n;
int s,t;
cin>>n;
int a[n];
for(int i=0;i<n;i++)
{
cin>>s>>t;
int h = (23-s)*60;
int m = (60-t);
a[i] = h+m;
}
for(int j=0;j<n;j++)
{
cout<<a[j]<<"\n";
}
return 0;
}