HDOJ 2101 A + B Problem Too水题

来源:互联网 发布:unity3d建模 衣服褶皱 编辑:程序博客网 时间:2024/06/05 07:29

HDACM2101

import java.util.Scanner;public class Main{    public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        while(sc.hasNext()){            int a = sc.nextInt();            int b = sc.nextInt();            if((a+b)%86==0){                System.out.println("yes");            }else{                System.out.println("no");            }        }    }}
原创粉丝点击