游客 Signup | Login
中文 | En

3179 - 判断1+2等于2+1吗?

如题

Input

Output

Examples

Input

no input needed

Output

TURE

Solution C++

//hhh
#include <iostream>
using namespace std;

int main(){
    int a , b;
    a=1;
    b=2;
	if(a+b==b+a)cout<<"TURE";
	return 0;
} 
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题