5562: Awesome anyway!无论如何,真棒!(ABC269A)

内存限制:1024 MB 时间限制:2.000 S
评测方式:文本比较 命题人:
提交:1 解决:1

题目描述

Problem Statement:

You are given integers $a$, $b$, $c$, and $d$. Print two lines as follows.

The first line should contain the result of calculating $(a + b) \times (c - d)$ as an integer.  
The second line should contain `Awesome`, regardless of the input.

给定整数 a、b、c和 d。请按以下方式输出两行!
1.第一行应包含计算 $(a + b) \times (c - d)$ 的结果作为整数。
2.无论输入什么,第二行应包含 “Awesome”。


输入

a b c d

输出


Print two lines according to the Problem Statement.

按照题目描述输出两行。

样例输入 复制

1 2 5 3

样例输出 复制

6
Awesome

提示

Constraints:

-   $-100 \leq a, b, c, d \leq 100$
-   $a$, $b$, $c$, and $d$ are integers.

来源/分类